From baa17675cbc204054e3b94f2b062a92582ecc963 Mon Sep 17 00:00:00 2001 From: Brad Grantham Date: Sat, 28 Jul 2018 12:20:47 -0700 Subject: [PATCH] add README, set CC65 in Makefile only if not already set --- Makefile | 3 ++- README.md | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 README.md diff --git a/Makefile b/Makefile index cdbfd05..f11cbc5 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ -CC65 = $(HOME)/trees/cc65/bin/ +CC65 ?= $(HOME)/trees/cc65/bin/ + CPU = 6502 apple2a.rom: a.out diff --git a/README.md b/README.md new file mode 100644 index 0000000..aa0fe7a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +Requires cc65 and https://github.com/bradgrantham/apple2e + +Set CC65 to the bin directory of your cc65 build.