Merge remote-tracking branch 'Lynx/master'

This commit is contained in:
EnderIce2
2024-11-20 05:02:27 +02:00
28 changed files with 7101 additions and 1 deletions

9
Lynx/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