diff options
author | 2012-09-15 22:30:30 +0000 | |
---|---|---|
committer | 2012-09-15 22:30:30 +0000 | |
commit | cff1004165c7026532c4809099d4ebca31643cd5 (patch) | |
tree | 745dd217242b32aa6421431ed8bc6271a699f756 /src/mess/machine/mc68328.h | |
parent | 000f9d27eddb3edde72bc289d9d0a9ed678f6fbb (diff) |
Pass 2 of struct modernization.
Diffstat (limited to 'src/mess/machine/mc68328.h')
-rw-r--r-- | src/mess/machine/mc68328.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/mc68328.h b/src/mess/machine/mc68328.h index 86163504517..4d004b7343b 100644 --- a/src/mess/machine/mc68328.h +++ b/src/mess/machine/mc68328.h @@ -10,7 +10,7 @@ #ifndef __MC68328_PRIVATE_H_ #define __MC68328_PRIVATE_H_ -typedef struct +struct mc68328_regs_t { // $(FF)FFF000 UINT8 scr; // System Control Register @@ -201,9 +201,9 @@ typedef struct UINT16 rtcienr; // RTC Interrupt Enable Register UINT16 stpwtch; // Stopwatch Minutes UINT8 unused42[1260]; -} mc68328_regs_t; +}; -typedef struct +struct mc68328_t { const mc68328_interface* iface; @@ -212,7 +212,7 @@ typedef struct emu_timer *gptimer[2]; emu_timer *rtc; emu_timer *pwm; -} mc68328_t; +}; #define SCR_BETO 0x80 #define SCR_WPV 0x40 |