Advance on 8086 emulator

This commit is contained in:
Nero 2019-10-01 21:35:01 +00:00
parent 6e7a6563d5
commit a30f4f3287
3 changed files with 115 additions and 1 deletions

18
programs/lst2bin.asm Normal file
View file

@ -0,0 +1,18 @@
org 0x100
jmp start
%include "fcbparse.asm"
fcb_in:
times 20 db 0
fcb_out:
times 20 db 0
start:
mov si, 0x81
mov bx, fcb_in
mov ax, 0x1234
call fcb_parse
ret