gameoflife-appleii/README.md

38 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

2016-10-09 09:30:47 +00:00
This is an Apple II port of **Conway's Game of Life**.
It should build with no modification on Linux, macOs and Windows 10 (using the bash).
2016-10-16 22:11:23 +00:00
---
It will produce the file *gol.a2*, which is an Apple II executable
2016-10-09 09:30:47 +00:00
**Prerequisite in order to build:**
2016-10-16 22:11:23 +00:00
2016-10-09 09:30:47 +00:00
* The [cc65 compiler suite](https://github.com/cc65/cc65), with the environment variable *CC65_HOME* set to its folder
2016-10-16 22:11:23 +00:00
**Prerequisite in order to produce the disk image**
* Java Runtime
* [*AppleCommander*](http://applecommander.sourceforge.net/)
**Embedding the Apple 2 binary into the disk image**
Run the *add-to-disk.sh* script.
2016-10-09 09:30:47 +00:00
**Splash screen**
2016-12-13 00:45:27 +00:00
The splash screen art is located in the *assets* folder. **It has to be
manually loaded** on the disk image using the *AppleCommander's GUI*, for the
2016-12-13 00:45:27 +00:00
command line loads a corrupted file!
This screen was converted from a PNG using [*Rgb2Hires*](https://github.com/Pixinn/Rgb2Hires).
2016-10-16 22:11:23 +00:00
---
2016-10-09 09:30:47 +00:00
For more information, you can refer to these posts on [my blog](https://www.xtof/info/blog/).
* [Coding in C for a 8 bit 6502 CPU](https://www.xtof.info/blog/?p=714)
* [Coding in Assembly for an Apple II](https://www.xtof.info/blog/?p=745)
* [HIRES Graphics on the Apple II](https://www.xtof.info/blog/?p=768)
* [Making the Apple II sing](https://www.xtof.info/blog/?p=807)
* [A Game of Life](https://www.xtof.info/blog/?p=837)