最初コミット

This commit is contained in:
2025-12-11 02:56:15 +09:00
commit c400fb5593
3 changed files with 89 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
all: build run
build:
nasm -f elf64 main.s -o main.o
ld main.o -o gen
run:
./gen
.PHONY: all build run