From b7121233f2b401357d07f4046ef3e777536cbc3b Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Sat, 18 Aug 2018 17:56:05 +0200 Subject: [PATCH] update readme --- README.md | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 521de5c..7dbe5ef 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,27 @@ currently, this just displays a test image and dumps some text to a computer connected via the 64drive's USB port. -the image is [a test card by Väinö Helminen](http://vah.dy.fi/testcard/) +the image is [a test card by Väinö Helminen.](http://vah.dy.fi/testcard/) -i'm also borrowing some code from [krom's repo.](https://github.com/PeterLemon/N64/) +i'm borrowing some code from [krom's repo.](https://github.com/PeterLemon/N64/) +this has been very useful in getting things up-and-running on the N64 +and i suggest you check out their work. + +the [Dwarf Fortress][dwarf] 8x12 font is included as a 1-bit-per-pixel image. + +a [F3DZEX][zexdocs] disassembly is included. i did this myself. +disassemblies of its data section and the 6102 bootcode +will be done in the future. + +[dwarf]: http://www.bay12games.com/dwarves/ +[zexdocs]: https://wiki.cloudmodding.com/oot/F3DZEX + +### building 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) -(to be included in this repo later). +(to be included in this repo later). then, run: +``` +bass main.asm +z64crc test.z64 +```