comparison romdb.h @ 2053:3414a4423de1 segacd

Merge from default
author Michael Pavone <pavone@retrodev.com>
date Sat, 15 Jan 2022 13:15:21 -0800
parents 5dacaef602a7 3748a2a8a4b7
children 8ee7ecbf3f21
comparison
equal deleted inserted replaced
1692:5dacaef602a7 2053:3414a4423de1
9 #define RAM_FLAG_EVEN 0x10 9 #define RAM_FLAG_EVEN 0x10
10 #define RAM_FLAG_BOTH 0x00 10 #define RAM_FLAG_BOTH 0x00
11 #define RAM_FLAG_MASK RAM_FLAG_ODD 11 #define RAM_FLAG_MASK RAM_FLAG_ODD
12 #define SAVE_I2C 0x01 12 #define SAVE_I2C 0x01
13 #define SAVE_NOR 0x02 13 #define SAVE_NOR 0x02
14 #define SAVE_HBPT 0x03
14 #define SAVE_NONE 0xFF 15 #define SAVE_NONE 0xFF
15 16
16 #include "tern.h" 17 #include "tern.h"
17 #include "serialize.h" 18 #include "serialize.h"
18 19
41 } nor_state; 42 } nor_state;
42 43
43 enum { 44 enum {
44 MAPPER_NONE, 45 MAPPER_NONE,
45 MAPPER_SEGA, 46 MAPPER_SEGA,
47 MAPPER_SEGA_SRAM,
46 MAPPER_REALTEC, 48 MAPPER_REALTEC,
47 MAPPER_XBAND, 49 MAPPER_XBAND,
48 MAPPER_MULTI_GAME, 50 MAPPER_MULTI_GAME,
49 MAPPER_JCART 51 MAPPER_JCART,
52 MAPPER_SEGA_MED_V2
50 }; 53 };
51 54
52 55
53 typedef struct rom_info rom_info; 56 typedef struct rom_info rom_info;
54 57