rdos/programs/lst2bin.asm

19 lines
177 B
NASM
Raw Normal View History

2019-10-01 23:35:01 +02:00
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