This commit is contained in:
root 2025-05-04 11:26:20 +00:00
parent 1f0adc0a69
commit e855248606
2 changed files with 7 additions and 2 deletions

6
.gitignore vendored
View file

@ -1,8 +1,10 @@
# ignore all files
*
# except files with extensions
# except these
!*.*
!makefile
# except except these files
# except except these
*.o

3
makefile Normal file
View file

@ -0,0 +1,3 @@
main:
nasm -f elf64 -o hello.o hello.s
ld -o hello hello.o