DOS and GHOST

Programming, for all ages and all languages.
Post Reply
User avatar
Jonatan44
Posts: 24
Joined: Fri Sep 11, 2009 1:22 am

DOS and GHOST

Post by Jonatan44 »

Hello everyone,
i have some questions regarding DOS and GHOST...
while DOS running, is the operation system uses a driver for the disk IO or just uses int 13 for that?
when we launch ghost for disk cloning operation, does it uses int 13 for disk operation? i believe it's load a driver and not using int 13 since the disk IO are very fast comparing other int 13 operations...

can anyone help me solve those questions?


thanks !
User avatar
Brynet-Inc
Member
Member
Posts: 2426
Joined: Tue Oct 17, 2006 9:29 pm
Libera.chat IRC: brynet
Location: Canada
Contact:

Re: DOS and GHOST

Post by Brynet-Inc »

(MS,IBM,etc)-DOS runs in real mode and uses BIOS interrupts for almost everything, searching for this "Ghost" program I came across a Wikipedia article for "Norton Ghost".

According to the version history, versions prior to 4.0 ran exclusively in real mode.. they may have used interrupts at that point.. but subsequent versions run in protected mode, so it would seem that they wrote their own drivers.

Hope that helped.
Image
Twitter: @canadianbryan. Award by smcerm, I stole it. Original was larger.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

Re: DOS and GHOST

Post by jal »

Brynet-Inc wrote:but subsequent versions run in protected mode, so it would seem that they wrote their own drivers.
Or they simply used a DOS extender that thunked back to the BIOS.


JAL
Post Reply