🚧 Adds assembly hello world

This commit is contained in:
Daniel Svitan
2025-05-05 21:43:27 +02:00
parent 07d45752cc
commit 0d144f025d
3 changed files with 26 additions and 1 deletions

7
build.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/bash
gcc main.c -o a.out
gcc -c main.s -o b.o
ld b.o -o b.out
rm b.o