aboutsummaryrefslogtreecommitdiff
path: root/test.asm
diff options
context:
space:
mode:
authorMarvin Borner2021-08-29 21:18:03 +0200
committerMarvin Borner2021-08-29 21:18:03 +0200
commit75bb42663294b388377178b7257c6f8c0f787032 (patch)
tree0371bf7570ee85ada4ab6dfc98e6ffe9098cef16 /test.asm
parenteef250dd4a0ae185a8d9d668f020b2ab5c2f4849 (diff)
KVM stuff
Diffstat (limited to 'test.asm')
-rw-r--r--test.asm12
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