sys: parse drive number and load BPB

This commit is contained in:
Nero 2021-12-11 16:46:00 +00:00
parent a3ef693059
commit 725213b581
8 changed files with 436 additions and 5 deletions

View file

@ -1,15 +0,0 @@
; COM program displaying hello world string
; This is primarily for testing purposes
org 0x0100
main: mov si, string
mov ah, 0x0e
xor bx, bx
.loop: lodsb
test al, al
jz .end
int 0x10
jmp .loop
.end: ret
string: db "Hello world!", 0x0A, 0x0D, 0