Add a few toys

This commit is contained in:
2025-09-24 00:40:56 +02:00
parent 9daf8d7f97
commit ee97876115
8 changed files with 250 additions and 0 deletions

11
add.asm Normal file
View File

@@ -0,0 +1,11 @@
BITS 16
CPU 8086
_start:
mov bp, sp
mov si, [bp+6]
mov ax, [si]
mov si, [bp+4]
mov dx, [si]
sub ax, dx
retf 4