Add a couple more small binaries

This commit is contained in:
2025-09-29 18:00:00 +02:00
parent dd5d329dff
commit 83e267fa36
3 changed files with 25 additions and 5 deletions

12
writeio.asm Normal file
View File

@@ -0,0 +1,12 @@
BITS 16
CPU 8086
_start:
mov bp, sp
mov si, [bp+6]
mov dx, [si]
xor ax, ax
mov si, [bp+4]
mov al, [si]
out dx, al
retf 4