https://github.com/nakedmcse/c64toasters
C64 Version of Flying Toasters
https://github.com/nakedmcse/c64toasters
c64 commodore commodore64 flying-toasters
Last synced: over 1 year ago
JSON representation
C64 Version of Flying Toasters
- Host: GitHub
- URL: https://github.com/nakedmcse/c64toasters
- Owner: nakedmcse
- License: mit
- Created: 2024-08-10T14:44:16.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-16T13:45:53.000Z (almost 2 years ago)
- Last Synced: 2024-08-16T21:51:16.919Z (almost 2 years ago)
- Topics: c64, commodore, commodore64, flying-toasters
- Language: C
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C64Toasters
Commodore 64 Version of Flying Toasters Screensaver.
Built to use PETSCII representations of the taosters, with animation
and parallax effect between the near and far toasters.
## Configuration
The maximum number of toasters in each layer can be adjusted by editing this define:
C64Toasters.c:
```C
#define MAXTOASTERS 4
```
## Building
This uses make and requires both VICE and CC65 to be installed in order to compile.
Build the prg file, which can be loaded into VICE using the smart attach -> autostart feature:
```bash
make
```
Compile the prg file to a D64 disk file:
```bash
make
make disk
```