diff options
author | Marvin Borner | 2021-08-29 21:18:03 +0200 |
---|---|---|
committer | Marvin Borner | 2021-08-29 21:18:03 +0200 |
commit | 75bb42663294b388377178b7257c6f8c0f787032 (patch) | |
tree | 0371bf7570ee85ada4ab6dfc98e6ffe9098cef16 /test.asm | |
parent | eef250dd4a0ae185a8d9d668f020b2ab5c2f4849 (diff) |
KVM stuff
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 |