Initial commit

This commit is contained in:
2022-08-28 14:29:25 -07:00
commit a8bf8841c2
7 changed files with 1013 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