Reputation: 125
what is the difference between dos interuppt and bios interuppt
Upvotes: 0
Views: 2204
Reputation: 994391
In 16-bit 80x86 programming, user programs communicate with system service using interrupts. Typically this takes the form of:
INT
instruction with an interrupt vector numberThe BIOS offers its own services under a few different interrupt vector numbers, for example:
DOS, since it is a separate component from the BIOS, offers its services under INT 21h.
Upvotes: 2