diff options
author | Marvin Borner | 2023-01-28 22:29:48 +0100 |
---|---|---|
committer | Marvin Borner | 2023-01-28 22:29:48 +0100 |
commit | de450bfb4354f716fb43fae69d90ed513068d10b (patch) | |
tree | b474219ae3baaeb8a075e6fbb5c57c3857faa588 /tests/asm | |
parent | 75bb42663294b388377178b7257c6f8c0f787032 (diff) |
Rewrite, bootstrap
Rewriting without KVM, huge goals, won't finish, just for fun.
Diffstat (limited to 'tests/asm')
-rw-r--r-- | tests/asm/yay.asm | 17 |
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 |