i still dont know what im doing

This commit is contained in:
Nero 2020-03-01 16:43:23 +00:00
parent 4847eb4d88
commit bc238a3bf9
19 changed files with 203 additions and 1099 deletions

View file

@ -1,21 +0,0 @@
org 0x100
jmp start
%include "fcbparse.asm"
fcb_asm:
times 36 db 0
fcb_bin:
times 36 db 0
fcb_lst:
times 36 db 0
start:
mov si, 0x81
mov bx, fcb_asm
mov ax, 0x1234
call fcb_parse
ret

View file

@ -1,17 +0,0 @@
org 0x0100
main:
mov si, hello
.loop:
lodsb
test al, al
jz .ret
mov dl, al
mov cl, 0x02
call 5
jmp .loop
.ret:
ret
hello:
db "Hello!", 0x0A, 0x0D, 0