hmm, You may have to check your system bios for a USB legacy mode so it
is handled though int 16. Although i though newer usb computer
automaticly will hook to the interrupt.
the following will help,
http://www.freedos.org/freedos/news/technote/179.html
> Original Message
>
Or code it to assume compatibility unless explicitly told so by user.
hmm ,
--chris
http://nxdos.sourceforge.net/
> Original Message
> Subject: Re: [Freedos-user] Display Mode Change
> From: "Alain M." <[EMAIL PROTECTED]>
> Date: Wed, April 18, 2007 5:55 pm
> To: freedos-user@li
Just make you own, :)
encrypt proc far
; AL = byte to crypt
dec al
not al
rol al, 1
rol al, 1
xor al, KEY ; KEY = say 0ceh or something
ret
encrypt endp
decrypt proc far
xor al, KEY
ror al, 1
ror al, 1