Throw out previous x86 stuff

This commit is contained in:
Nero 2019-12-22 02:52:40 +01:00
parent 18e9221bf6
commit 807db4a592
25 changed files with 0 additions and 2504 deletions

View file

@ -1,21 +0,0 @@
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

View file

@ -1,17 +0,0 @@
org 0x0100
main:
mov si, hello
.loop:
lodsb
test al, al
jz .ret
mov dl, al
mov cl, 0x02
call 5
jmp .loop
.ret:
ret
hello:
db "Hello!", 0x0A, 0x0D, 0