aboutsummaryrefslogtreecommitdiff
path: root/test.asm
diff options
context:
space:
mode:
authorMarvin Borner2022-02-20 18:48:30 +0100
committerMarvin Borner2022-02-20 18:48:30 +0100
commitfa02225c5ae8b704408769c70bb47101042762b8 (patch)
tree2bbd0763fccacd0a35631d6ee9a2176ed836eef5 /test.asm
parent5cc450b6e8554f5d982f444b9026447971c94024 (diff)
Haskell ftw
Diffstat (limited to 'test.asm')
-rw-r--r--test.asm10
1 files changed, 10 insertions, 0 deletions
diff --git a/test.asm b/test.asm
new file mode 100644
index 0000000..3fb6e31
--- /dev/null
+++ b/test.asm
@@ -0,0 +1,10 @@
+global _start
+section .text
+
+_start:
+ xor ebx, ebx
+ xor eax, eax
+ mov al, 0x1
+ int 0x80
+
+; nasm -f elf64 test.asm && ld -o test.o