Initial compiler design.

This commit is contained in:
patrick_pluto 2024-08-22 19:26:18 +02:00
commit 53c8369b8f
6 changed files with 379 additions and 0 deletions

14
Makefile Normal file
View file

@ -0,0 +1,14 @@
# Compiler
CXX = g++
# Source file
SRC = main.cpp
# Executable name
EXEC = pluto_isa_asm
# Default target
all:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC)
clean:
rm bin/$(EXEC)