Code stub

This commit is contained in:
Alex
2022-10-13 09:20:08 +03:00
parent da269b5c6d
commit 6cf44540fb
12 changed files with 203 additions and 14 deletions

9
BIOS/print.inc Normal file
View File

@ -0,0 +1,9 @@
Print:
lodsb
or al, al
jz PrintDone
mov ah, 0eh
int 10h
jmp Print
PrintDone:
ret