kbeckmann / PicoCart64

N64 development cart using a Raspberry Pi RP2040
BSD 2-Clause "Simplified" License
762 stars 43 forks source link

Implement trivial ROM compression #17

Closed kbeckmann closed 2 years ago

kbeckmann commented 2 years ago

This is mostly useful for tiny homebrew ROMs, but might be useful for users who use the Pico which only has 2MB of flash.

Idea:

Python script that chops up the file into 4k blocks, generate a table that points to the right block, write the mapping in c code done

kbeckmann commented 2 years ago

This is implemented now and seems to work well.