Mouse type now configurable

This commit is contained in:
SarahW 2016-12-16 20:19:08 +00:00
commit 09dbd1dd65
21 changed files with 494 additions and 238 deletions

View file

@ -1,3 +1,8 @@
#define MODEL_AT 1
#define MODEL_PS2 2
#define MODEL_AMSTRAD 4
#define MODEL_OLIM24 8
typedef struct
{
char name[24];
@ -8,7 +13,7 @@ typedef struct
CPU *cpus;
} cpu[4];
int fixed_gfxcard;
int is_at;
int flags;
int min_ram, max_ram;
int ram_granularity;
void (*init)();