From the Book:
		|-------------------------------|
		| Writing MS-DOS Device Drivers |
		|	by Robert S. Lai	|
		| publisher: Addison - Wesley	|
		|-------------------------------|


this arc contains example device drivers from the book above
these are great examples.
if you have this book this disk will be of great help.
if you don't have the book the examples are simple and
easy to follow.

batch file example to compile drivers
type this in at the command line C:>

copy con drv.bat
masm %1
link %1
exe2bin %1.exe %1.com
del %1.exe
ren %1.com %1.sys
Then press F6 and return


then to compile type

C:\>drv filename
