Compare commits
1 commit
main
...
optional-c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8626466cdc |
2 changed files with 4 additions and 0 deletions
3
Makefile
3
Makefile
|
|
@ -3,7 +3,10 @@ export PATH:= $(abspath bin):$(PATH)
|
|||
.PHONY: all
|
||||
all: 80columns-compressed.prg 80c2-compressed.prg 80c3-compressed.prg 80c4-compressed.prg
|
||||
all: charset.prg charset2.prg charset3.prg charset4.prg
|
||||
|
||||
ifneq ($(shell which c1541 2>/dev/null),)
|
||||
all: 80columns.d64
|
||||
endif
|
||||
|
||||
80columns.d64: 80columns-compressed.prg charset.prg charset2.prg charset3.prg charset4.prg
|
||||
rm -f $@
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ Building requires a UNIX environment and [cc65](https://github.com/cc65/cc65) an
|
|||
Running `make toolchain` will download and build cc65 and exomizer, assuming that you have a basic C development environment available.
|
||||
(If your system has packages of cc65 or exomizer, it is probably better to use those, e.g., with `brew install cc65 exomizer` on MacOS)
|
||||
Running `make` will produce `80columns-compressed.prg`, which is about 2.2 KB in size and can be started using `LOAD`/`RUN`.
|
||||
If the `c1541` program is available, it will also create a disk image `80columns.d64` containing the main program and the alternative fonts.
|
||||
|
||||
## Features
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue