22 lines
205 B
NASM
22 lines
205 B
NASM
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
|