The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: xxxx on February 14, 2005, 07:22:42 AM

Title: Debug
Post by: xxxx on February 14, 2005, 07:22:42 AM


my OS is Windows XP and when i type this in DEBUG:

   l cs:100 2 10 100

i get a message that says an application attempted to access the hard disk directly which is not supported.how do i solve this error?
Title: Re: Debug
Post by: MichaelW on February 14, 2005, 08:29:53 AM
Windows 2000 and XP will not allow a DOS app to access the hard disk drive (not even for a read access), and AFAIK there is no way around it. But if you are just curious, you should be able to access a diskette drive.
Title: Re: Debug
Post by: Gustav on February 14, 2005, 04:37:34 PM
> and AFAIK there is no way around it

One can write a VDD for that, which in fact is a win32 dll running in a win32 process (ntvdm)
Title: Re: Debug
Post by: MichaelW on February 14, 2005, 08:00:33 PM
QuoteOne can write a VDD for that, which in fact is a win32 dll running in a win32 process (ntvdm)

Yes, I am aware of that.  But DEBUG is a 16-bit DOS app, the internal commands are hard-coded to use DOS interrupts, and AFAIK xxxx is a beginner. Ultimately, there probably is some way around the problem, but who in their right mind would go to that much trouble just so they could access the hard drive (logical sectors only) with a DEBUG command.

Title: Re: Debug
Post by: xxxx on February 14, 2005, 09:14:21 PM
"One can write a VDD for that, which in fact is a win32 dll running in a win32 process (ntvdm)"

are there any online tutorial on that subject?


thanks.
Title: Re: Debug
Post by: AeroASM on February 25, 2005, 03:54:14 PM
Four-F's Kernel Mode Driver tutorial