This commit is contained in:
hexplor
2026-06-04 20:39:52 +02:00
parent 100050b9d3
commit 9a161bfcb2
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
NAME = analyze
$(NAME): analyze.o
ld $^ -o $@
analyze.o: start.s
nasm -f elf64 start.s -o $@
+7
View File
@@ -0,0 +1,7 @@
default rel
BITS 64
section .text
global _start
_start:
mov rax, 1