diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-02 21:08:33 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-02 21:08:33 -0800 |
commit | 9cee9ef2dbd75efac5f3ae4a21c348d8922d56e2 (patch) | |
tree | d8c641b0af5b6167d961a07306642e4f836f87b4 /realtec.h | |
parent | 8bc00ee3f7cf910d8e3a1f473e5c582597b12dd6 (diff) |
Support for the Realtec mapper. Needs testing with games besides The Earth Defend
Diffstat (limited to 'realtec.h')
-rw-r--r-- | realtec.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/realtec.h b/realtec.h new file mode 100644 index 0000000..15f4ca2 --- /dev/null +++ b/realtec.h @@ -0,0 +1,7 @@ +#ifndef REALTEC_H_ +#define REALTEC_H_ + +uint8_t realtec_detect(uint8_t *rom, uint32_t rom_size); +rom_info realtec_configure_rom(uint8_t *rom, uint32_t rom_size, memmap_chunk const *base_map, uint32_t base_chunks); + +#endif //REALTEC_H_ |