From 7cc1a2e6ccc8f4a87e73c35672e7bb973e965470 Mon Sep 17 00:00:00 2001 From: onelin Date: Wed, 10 Jun 2026 06:58:13 +0200 Subject: Initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..9f3c9a5 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: fmt + +write-elf: main.c write_elf.c registers.h instructions.h + gcc -static-pie main.c -o write-elf + +tiny: tiny.s + nasm -f elf64 tiny.s + +fmt: main.c write_elf.c registers.h instructions.h + clang-format -i $^ -- cgit v1.3