diff options
author | 2012-09-15 22:30:30 +0000 | |
---|---|---|
committer | 2012-09-15 22:30:30 +0000 | |
commit | cff1004165c7026532c4809099d4ebca31643cd5 (patch) | |
tree | 745dd217242b32aa6421431ed8bc6271a699f756 /src/emu/cpu/scudsp/scudspdasm.c | |
parent | 000f9d27eddb3edde72bc289d9d0a9ed678f6fbb (diff) |
Pass 2 of struct modernization.
Diffstat (limited to 'src/emu/cpu/scudsp/scudspdasm.c')
-rw-r--r-- | src/emu/cpu/scudsp/scudspdasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/scudsp/scudspdasm.c b/src/emu/cpu/scudsp/scudspdasm.c index b696f99f392..7e31879efbe 100644 --- a/src/emu/cpu/scudsp/scudspdasm.c +++ b/src/emu/cpu/scudsp/scudspdasm.c @@ -26,12 +26,12 @@ enum EA_MVIDSTMEM, }; -typedef struct { +struct SCUDSP_OPCODE { char mnemonic[32]; int address_mode_1; int address_mode_2; int address_mode_3, -} SCUDSP_OPCODE; +}; static const SCUDSP_OPCODE alu_table[16] = { |