diff options
Diffstat (limited to 'test.asm')
-rw-r--r-- | test.asm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test.asm b/test.asm new file mode 100644 index 0000000..f115ca4 --- /dev/null +++ b/test.asm @@ -0,0 +1,12 @@ +xor dx, dx + +test: +in ax, 0x60 +mov bx, 42 + +mov cx, 1 +add dx, cx +cmp dx, 255 +jne test + +hlt |