From 6df79416177a4dcef56be345cd764b51d20864eb Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Sat, 9 Dec 2017 16:46:45 -0800 Subject: [PATCH] Rename to bbb --- .gitignore | 3 +++ Makefile | 2 +- b.s => bbb.s | 0 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitignore rename b.s => bbb.s (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33b8f3f --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Generated files +*.list +*.SYS \ No newline at end of file diff --git a/Makefile b/Makefile index 631a079..01399bf 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CC65 = ~/dev/cc65/bin CAFLAGS = --target apple2enh --list-bytes 0 CCFLAGS = --config apple2-asm.cfg -TARGETS = b.SYS +TARGETS = bbb.SYS .PHONY: clean all all: $(TARGETS) diff --git a/b.s b/bbb.s similarity index 100% rename from b.s rename to bbb.s