diff options
Diffstat (limited to 'src/emu/cpu/m68000')
| -rw-r--r-- | src/emu/cpu/m68000/m68k_in.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/m68000/m68kdasm.c | 2 | ||||
| -rw-r--r-- | src/emu/cpu/m68000/m68kmake.c | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/cpu/m68000/m68k_in.c b/src/emu/cpu/m68000/m68k_in.c index 7eb1cb6cad2..9144143b6b0 100644 --- a/src/emu/cpu/m68000/m68k_in.c +++ b/src/emu/cpu/m68000/m68k_in.c @@ -128,7 +128,7 @@ void (*m68ki_instruction_jump_table[NUM_CPU_TYPES][0x10000])(m68ki_cpu_core *m68 unsigned char m68ki_cycles[NUM_CPU_TYPES][0x10000]; /* Cycles used by CPU type */ /* This is used to generate the opcode handler jump table */ -struct opcode_handler_struct +struct opcode_handler_struct { void (*opcode_handler)(m68ki_cpu_core *m68k); /* handler function */ unsigned int mask; /* mask on opcode */ diff --git a/src/emu/cpu/m68000/m68kdasm.c b/src/emu/cpu/m68000/m68kdasm.c index a43310db8cd..112ebbb29d2 100644 --- a/src/emu/cpu/m68000/m68kdasm.c +++ b/src/emu/cpu/m68000/m68kdasm.c @@ -174,7 +174,7 @@ static int valid_ea(UINT32 opcode, UINT32 mask); static int DECL_SPEC compare_nof_true_bits(const void *aptr, const void *bptr); /* used to build opcode handler jump table */ -struct opcode_struct +struct opcode_struct { void (*opcode_handler)(void); /* handler function */ UINT32 mask; /* mask on opcode */ diff --git a/src/emu/cpu/m68000/m68kmake.c b/src/emu/cpu/m68000/m68kmake.c index bb3179265fc..fd3322fa631 100644 --- a/src/emu/cpu/m68000/m68kmake.c +++ b/src/emu/cpu/m68000/m68kmake.c @@ -175,7 +175,7 @@ enum /* Everything we need to know about an opcode */ -struct opcode_struct +struct opcode_struct { char name[MAX_NAME_LENGTH]; /* opcode handler name */ unsigned char size; /* Size of operation */ @@ -192,7 +192,7 @@ struct opcode_struct /* All modifications necessary for a specific EA mode of an instruction */ -struct ea_info_struct +struct ea_info_struct { const char* fname_add; const char* ea_add; @@ -202,7 +202,7 @@ struct ea_info_struct /* Holds the body of a function */ -struct body_struct +struct body_struct { char body[MAX_BODY_LENGTH][MAX_LINE_LENGTH+1]; int length; @@ -210,7 +210,7 @@ struct body_struct /* Holds a sequence of search / replace strings */ -struct replace_struct +struct replace_struct { char replace[MAX_REPLACE_LENGTH][2][MAX_LINE_LENGTH+1]; int length; |
