diff options
Diffstat (limited to 'src/emu/sound/es5506.h')
-rw-r--r-- | src/emu/sound/es5506.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/sound/es5506.h b/src/emu/sound/es5506.h index ea74b6eb3d4..aee289521ab 100644 --- a/src/emu/sound/es5506.h +++ b/src/emu/sound/es5506.h @@ -10,8 +10,8 @@ struct ES5505interface { - int region0; /* memory region where the sample ROM lives */ - int region1; /* memory region where the sample ROM lives */ + const char * region0; /* memory region where the sample ROM lives */ + const char * region1; /* memory region where the sample ROM lives */ void (*irq_callback)(running_machine *machine, int state); /* irq callback */ UINT16 (*read_port)(void); /* input port read */ }; @@ -29,10 +29,10 @@ void ES5505_voice_bank_1_w(int voice, int bank); struct ES5506interface { - int region0; /* memory region where the sample ROM lives */ - int region1; /* memory region where the sample ROM lives */ - int region2; /* memory region where the sample ROM lives */ - int region3; /* memory region where the sample ROM lives */ + const char * region0; /* memory region where the sample ROM lives */ + const char * region1; /* memory region where the sample ROM lives */ + const char * region2; /* memory region where the sample ROM lives */ + const char * region3; /* memory region where the sample ROM lives */ void (*irq_callback)(running_machine *machine, int state); /* irq callback */ UINT16 (*read_port)(void); /* input port read */ }; |