Advance on 8086 emulator
This commit is contained in:
parent
6e7a6563d5
commit
a30f4f3287
3 changed files with 115 additions and 1 deletions
18
programs/lst2bin.asm
Normal file
18
programs/lst2bin.asm
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue