Initial commit

This commit is contained in:
Paul Mathieu
2021-02-17 13:20:30 -08:00
commit 363944d417
35 changed files with 3318 additions and 0 deletions

17
tools/makefile Normal file
View File

@@ -0,0 +1,17 @@
all: crt0.o
crt0.o: crt0.s as.py
python as.py -c $< -o $@
as.py: obj_pb2.py
obj_pb2.py: obj.proto
protoc --python_out=. $<
PHONY: clean distclean
clean:
rm -rf crt0.o
distclean: clean
rm -rf obj_pb2.py __pycache__