15 lines
166 B
NASM
15 lines
166 B
NASM
|
; Exec the cmdline at SI or 0x81
|
||
|
exec_chain:
|
||
|
mov si, 0x81
|
||
|
exec:
|
||
|
push bx
|
||
|
sub sp, 36
|
||
|
mov bx, sp
|
||
|
|
||
|
call fcb_parse
|
||
|
call fcb_print
|
||
|
|
||
|
add sp, 36
|
||
|
pop bx
|
||
|
ret
|