Moving and consolidating repos

This commit is contained in:
klein panic
2025-04-14 17:05:27 -04:00
parent 0529e3c972
commit 3a7f7e1e13
36 changed files with 799 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
section .data
text db "Hello, World!", 10
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, text
mov rdx, 14
syscall
mov rax, 60
mov rdi, 0
syscall