homebrew/README.md

32 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2018-08-29 18:25:48 -07:00
currently, this only displays a test image and dumps debugging text
to a computer connected via the 64drive's USB port.
2018-08-16 10:53:31 -07:00
2018-08-29 18:25:48 -07:00
some code is borrowed from [krom's repo.][krom]
2018-08-18 15:18:08 -07:00
their work has been invaluable in getting things started on the N64,
and i recommend checking it out.
2018-08-18 08:56:05 -07:00
2018-10-01 20:25:26 -07:00
some resources are scattered about for testing purposes.
2018-08-18 08:56:05 -07:00
the [Dwarf Fortress][dwarf] 8x12 font is included as a 1-bit-per-pixel image.
2018-08-29 18:25:48 -07:00
[a test card by Väinö Helminen][card] is included as well.
2018-08-18 08:56:05 -07:00
2018-08-18 15:18:08 -07:00
an [F3DZEX][zexdocs] disassembly is included. i did this myself.
disassemblies of its data section as well as the 6102 bootcode
2018-08-18 08:56:05 -07:00
will be done in the future.
2018-08-29 18:25:48 -07:00
[krom]: https://github.com/PeterLemon/N64/
2018-08-18 08:56:05 -07:00
[dwarf]: http://www.bay12games.com/dwarves/
2018-08-29 18:25:48 -07:00
[card]: http://vah.dy.fi/testcard/
2018-08-18 08:56:05 -07:00
[zexdocs]: https://wiki.cloudmodding.com/oot/F3DZEX
### building
2018-08-16 11:06:18 -07:00
you will need to compile
[bass (the assembler)](https://github.com/ARM9/bass) (ARM9's fork)
and [z64crc](https://github.com/notwa/mm/blob/master/z64crc.c)
2018-08-18 08:56:05 -07:00
(to be included in this repo later). then, run:
```
2018-08-19 04:40:30 -07:00
bass F3DZEX.asm # only needs to be done once
2018-08-18 08:56:05 -07:00
bass main.asm
z64crc test.z64
```