equi

A self-descriptive stack-based PC platform
git clone git://git.luxferre.top/equi.git
Log | Files | Refs | README | LICENSE

commit 23b39f036a5f126940e05b8289c984343b6ee729
parent 6466fa7d879f55b75b9ba110a70266944c216f6c
Author: Luxferre <lux@ferre>
Date:   Wed, 10 Aug 2022 22:14:43 +0300

Fixed return instruction and EOF behavior

Diffstat:
A.gitignore | 4++++
MMakefile | 2--
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +*.o +*.apple2 +*.a2enh diff --git a/Makefile b/Makefile @@ -19,7 +19,6 @@ apple2: apple2-build cp $(PBTDIR)/apple2/tpl.dsk $(PROJNAME).dsk java -jar $(PBTDIR)/apple2/ac.jar -p $(PROJNAME).dsk $(PROJNAME).system sys < $$(cl65 --print-target-path)/apple2/util/loader.system java -jar $(PBTDIR)/apple2/ac.jar -as $(PROJNAME).dsk $(PROJNAME) bin < $(PROJNAME).apple2 - rm *.o *.apple2 apple2enh-build: cl65 --standard c89 -O -Os -t apple2enh -o $(PROJNAME).a2enh $(CFILES) $(DFLAGS) @@ -28,7 +27,6 @@ apple2enh: apple2enh-build cp $(PBTDIR)/apple2/tpl.dsk $(PROJNAME)-enh.dsk java -jar $(PBTDIR)/apple2/ac.jar -p $(PROJNAME)-enh.dsk $(PROJNAME).system sys < $$(cl65 --print-target-path)/apple2enh/util/loader.system java -jar $(PBTDIR)/apple2/ac.jar -as $(PROJNAME)-enh.dsk $(PROJNAME) bin < $(PROJNAME).a2enh - rm *.o *.a2enh clean: rm -f ./$(PROJNAME) *.dsk *.o *.apple2 *.a2enh