Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wendelscardua/file-fixers
Computer-themed RPG for NES
https://github.com/wendelscardua/file-fixers
ca65 cc65 game game-off game-off-2021 homebrew nes nesdev
Last synced: about 1 month ago
JSON representation
Computer-themed RPG for NES
- Host: GitHub
- URL: https://github.com/wendelscardua/file-fixers
- Owner: wendelscardua
- License: mit
- Created: 2021-11-02T23:36:56.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T01:28:16.000Z (about 3 years ago)
- Last Synced: 2024-10-14T04:43:43.705Z (2 months ago)
- Topics: ca65, cc65, game, game-off, game-off-2021, homebrew, nes, nesdev
- Language: C
- Homepage:
- Size: 1.16 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File Fixers
A computer-themed RPG for NES, made for the [Game Off 2021](https://itch.io/jam/game-off-2021) game jam.
## Build dependencies
- cc65 for compiling
- FamiTone 5.0 (set `NSF2DATA` and `TEXT2DATA` paths on Makefile)
- FamiTracker (set `FAMITRACKER` path on Makefile).Intermediate sfx and soundtrack files are commited, so FamiTone and FamiTracker
are only needed if their original files are changed.## Building
To compile a release version:
```sh
$ make
```...or to include the commit on the rom name:
```sh
$ make release
```To compile a debug version:
```sh
$ make debug
```To compile a debug version and open it on an
emulator (with path defined by the `EMULATOR` variable on Makefile):```sh
$ make run
```