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

10
readio.asm Normal file
View File

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