Babystep2: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
No edit summary
 
No edit summary
Line 128: Line 128:
; ... rest of code here
; ... rest of code here
</pre>
</pre>

[[Category:Babystep]]

Revision as of 01:00, 13 January 2007

Writing a message using the BIOS

Quick review:

  1. Boot sector loaded by BIOS is 512 bytes
  2. The code in the boot sector of the disk is loaded by the BIOS at 0000:7c00
  3. Machine starts in Real Mode
  4. Be aware that the CPU is being interrupted unless you issue the CLI assembly command

Many (but not all) BIOS interrupts expect DS to be filled with a Real Mode segment value. This is why many BIOS interrupts won't work in protected mode. So if you want to use int 10h/ah=0eh to print to the screen, then you need to make sure that you seg:offset for the characters to print is correct.

It doesn't matter if you use 0000:7c00 or 07c0:0000, but if you use ORG you need to be aware of what's happening.

Asm Example:

; boot.asm
   mov ax, 0x07c0
   mov ds, ax

   mov si, msg
ch_loop:lodsb
   or al, al ; zero=end or str
   jz hang   ; get out
   mov ah, oxoE
   int 0x10
   jmp ch_loop

hang:
   jmp hang

msg   db 'Welcome to Machintosh', 13, 10, 0
   times 510-($-$$) db 0
   db 0x55
   db 0xAA

Here is the ORG evrsion. Note that you still need to tell DS what to be.

[ORG 0x7c00]

   xor ax, ax ; make it zero
   mov ds, ax

   mov si, msg
ch_loop:lodsb
   or al, al  ; zero=end of string
   jz hang    ; get out
   mov ah, 0x0E
   int 0x10
   jmp ch_loop

hang:
   jmp hang

msg   db 'Welcome to Macintosh', 13, 10, 0

   times 510-($-$$) db 0
   db 0x55
   db 0xAA

New topic: Typically 'procedures' are separated from the code using CALL/RET like the following.

[ORG 0x7c00]
   xor ax, ax  ;make it zero
   mov ds, ax

   mov si, msg
   call bios_print

hang:
   jmp hang

msg   db 'Welcome to Macintosh', 13, 10, 0

bios_print:
   lodsb
   or al, al  ;zero=end of str
   jz done    ;get out
   mov ah, 0x0E
   int 0x10
   jmp bios_print
done:
   ret

   times 510-($-$$) db 0
   db 0x55
   db 0xAA

For some inexplicable reason, loading SI then jumping to the procedure always bugged me. Fortunately for psychos like me NASM's macros let you pretend that you are passing a parameter (macro definitions has to go before it's being called).

%macro BiosPrint 1
                mov si, word %1
ch_loop:lodsb
   or al, al
   jz done
   mov ah, 0x0E
   int 0x10
   jmp ch_loop
done:
%endmacro

[ORG 0x7c00]
   xor ax, ax
   mov ds, ax

   BiosPrint msg

hang:
   jmp hang

msg   db 'Welcome to Macintosh', 13, 10, 0

   times 510-($-$$) db 0
   db 0x55
   db 0xAA

And in case your code is becoming long and unreadable, you can break it up into different files, then include the files at the beginning of you main code. Like so:

jmp main

%include "othercode.inc"

main:
   ; ... rest of code here