comparison realtec.h @ 1444:14a2834d010c

Save/restore mapper state in native save states
author Michael Pavone <pavone@retrodev.com>
date Sun, 27 Aug 2017 18:15:00 -0700
parents 23c94f5266d1
children
comparison
equal deleted inserted replaced
1443:93c1b056ccdd 1444:14a2834d010c
1 #ifndef REALTEC_H_ 1 #ifndef REALTEC_H_
2 #define REALTEC_H_ 2 #define REALTEC_H_
3 #include "serialize.h"
3 4
4 uint8_t realtec_detect(uint8_t *rom, uint32_t rom_size); 5 uint8_t realtec_detect(uint8_t *rom, uint32_t rom_size);
5 rom_info realtec_configure_rom(uint8_t *rom, uint32_t rom_size, memmap_chunk const *base_map, uint32_t base_chunks); 6 rom_info realtec_configure_rom(uint8_t *rom, uint32_t rom_size, memmap_chunk const *base_map, uint32_t base_chunks);
7 void realtec_serialize(genesis_context *gen, serialize_buffer *buf);
8 void realtec_deserialize(deserialize_buffer *buf, genesis_context *gen);
6 9
7 #endif //REALTEC_H_ 10 #endif //REALTEC_H_