altra64/README.md

41 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

# Altra64
2014-06-29 01:10:11 -04:00
2014-06-29 16:31:24 -04:00
Alternative Everdrive64 menu
2014-06-29 01:10:11 -04:00
`Altra64` is an open source menu for [Everdrive64](http://krikzz.com/) and ed64+ and is based on a fork of alt64 which was
2014-06-29 16:31:24 -04:00
originally written by saturnu, and released on the
[Everdrive64 forum](http://krikzz.com/forum/index.php?topic=816.0).
2014-06-29 01:10:11 -04:00
## Reason for this fork
The original version overwrote 1 save file per game on system reset, but if you (or your kids...) accidentally turn it off, or hit reset twice, you just lost your entire game progress forever. I have modified the saving/loading to *never* overwrite a save file, and instead save `gamename.0000.SRM`, then `gamename.0001.SRM` next and so on, up to `gamename.9999.SRM`, so that absolute worst case if you mess up you only lose 1 gaming session's save. If need be you can put the SD card into a computer and delete the latest faulty save. Upon starting a game it'll always load the highest numbered save.
2014-06-29 16:31:24 -04:00
## Building
2014-06-29 01:10:11 -04:00
If you want to build the menu, you need an n64 toolchain. This is terrible to build, I ended up creating a Dockerfile in the docker folder, instructions included in it.
2014-06-29 01:10:11 -04:00
Or if you trust me, you can use the one I built and pushed to docker hub, [moparisthebest/altra64-dev](https://hub.docker.com/r/moparisthebest/altra64-dev)
2014-06-29 01:10:11 -04:00
### Build `Altra64`
2014-06-29 01:10:11 -04:00
To build the Rom
2014-06-29 16:31:24 -04:00
from the projects root directory, with docker installed
2014-06-29 16:31:24 -04:00
```
$ docker run --rm -v "$(pwd):/build" moparisthebest/altra64-dev make
2014-06-29 16:31:24 -04:00
```
If it all worked, you will find `OS64.v64` in the `bin` directory.
2016-12-13 08:09:11 -05:00
2014-06-29 16:31:24 -04:00
### Clean `Altra64`
Finally, we can clean the build objects from the project
2014-06-29 16:31:24 -04:00
from the projects root directory
```
$ docker run --rm -v "$(pwd):/build" moparisthebest/altra64-dev make clean
2014-06-29 16:31:24 -04:00
```
2016-12-13 08:09:11 -05:00
Enjoy!