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/includes/c65.h | |
parent | 000f9d27eddb3edde72bc289d9d0a9ed678f6fbb (diff) |
Pass 2 of struct modernization.
Diffstat (limited to 'src/mess/includes/c65.h')
-rw-r--r-- | src/mess/includes/c65.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/includes/c65.h b/src/mess/includes/c65.h index 1588ba101cb..f29335bc808 100644 --- a/src/mess/includes/c65.h +++ b/src/mess/includes/c65.h @@ -10,13 +10,13 @@ #include "includes/c64_legacy.h" #include "machine/6526cia.h" -typedef struct +struct dma_t { int version; UINT8 data[4]; -} dma_t; +}; -typedef struct +struct fdc_t { int state; @@ -30,12 +30,12 @@ typedef struct attotime time; int head,track,sector; -} fdc_t; +}; -typedef struct +struct expansion_ram_t { UINT8 reg; -} expansion_ram_t; +}; class c65_state : public legacy_c64_state { |