aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarvin Borner2023-01-28 22:29:48 +0100
committerMarvin Borner2023-01-28 22:29:48 +0100
commitde450bfb4354f716fb43fae69d90ed513068d10b (patch)
treeb474219ae3baaeb8a075e6fbb5c57c3857faa588 /tests
parent75bb42663294b388377178b7257c6f8c0f787032 (diff)
Rewrite, bootstrap
Rewriting without KVM, huge goals, won't finish, just for fun.
Diffstat (limited to 'tests')
-rw-r--r--tests/asm/yay.asm17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/asm/yay.asm b/tests/asm/yay.asm
new file mode 100644
index 0000000..beffcb6
--- /dev/null
+++ b/tests/asm/yay.asm
@@ -0,0 +1,17 @@
+section .data
+
+msg: db "yay", 10
+len: equ $-msg
+
+section .text
+global main
+main:
+ mov rax, 1
+ mov rdi, 1
+ mov esi, msg
+ mov rdx, len
+ syscall
+
+ mov rax, 60
+ mov rdi, 0
+ syscall