Initial commit

This commit is contained in:
2022-10-04 04:11:36 -07:00
commit f080ba36e8
5 changed files with 994 additions and 0 deletions

9
Makefile Normal file
View File

@ -0,0 +1,9 @@
cat: cat.o
ld -o cat cat.o
cat.o: cat.s
nasm -g -f elf64 cat.s
.PHONY: clean
clean:
rm -f cat.o cat