diff --git a/code/boot/.editorconfig b/code/boot/.editorconfig index 73a2dde..6ffe7b0 100644 --- a/code/boot/.editorconfig +++ b/code/boot/.editorconfig @@ -1,4 +1,4 @@ -# Editorconfig for Chibi PC-09 Firmware +# Editorconfig for CHIBI PC-09 Firmware root = true diff --git a/code/boot/.gitignore b/code/boot/.gitignore index c52d56e..3059021 100644 --- a/code/boot/.gitignore +++ b/code/boot/.gitignore @@ -1,4 +1,4 @@ -# Gitignore for Chibi PC-09 Firmware +# Gitignore for CHIBI PC-09 Firmware *.o *.bin diff --git a/code/boot/makefile b/code/boot/makefile index 1586f3d..1b5b85f 100644 --- a/code/boot/makefile +++ b/code/boot/makefile @@ -1,4 +1,4 @@ -# Makefile for Chibi PC-09 Firmware +# Makefile for CHIBI PC-09 Firmware .PHONY: all clean .IGNORE: clean @@ -8,10 +8,10 @@ # Project Defaults & Folders # ------------------------------------------------------------------------------ -TARGET := boot.bin -SRCDIR := src/ -MAINSRC := $(SRCDIR)boot.s -SRCS := $(wildcard $(SRCDIR)*.s) +TARGET := boot.bin +SRCDIR := src/ +MAINSRC := $(SRCDIR)boot.s +SRCS := $(wildcard $(SRCDIR)*.s) # ------------------------------------------------------------------------------ # Toolchain Definitions