From 613d5880e006373183318f1b8c2a9447e4b5c80b Mon Sep 17 00:00:00 2001 From: Gale Faraday Date: Thu, 21 Nov 2024 18:20:07 -0600 Subject: [PATCH] chore: changing instances of Chibi PC-09 to CHIBI PC-09. --- code/boot/.editorconfig | 2 +- code/boot/.gitignore | 2 +- code/boot/makefile | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) 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