|
|||
ASSEMBLY PROGRAMMING AND OS DESIGN
<HOME> |
CH2.5 BIOS Int Calls
The first step towards doing some real programming is to begin removing
our dependence on the Operating System and learning how to do things for
ourselves. This jump cannot be made in one step however, so we begin
by dropping to the BIOS for some of our needs. The first Hello World program you wrote used DOS to output the words one character at a time to the display. BIOS can do the same thing for you with int 10h. To keep things brief, we will only output one character. Ex 10
org 100h Function 0Eh outputs single characters, but function 13h will output a
whole string. The following version of Hello World will demonstrate this in better
detail.
|
| www.cynergysoft.com |
Email any questions to the author, Nathan Daniels. |
Copyright © 2001 |