diff options
author | 2012-09-15 21:47:30 +0000 | |
---|---|---|
committer | 2012-09-15 21:47:30 +0000 | |
commit | ab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch) | |
tree | 5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/emu/cpu/g65816 | |
parent | d1da89cc7817315f05269205a3f56d36ebba170b (diff) |
First pass at modernizing struct definitions.
Diffstat (limited to 'src/emu/cpu/g65816')
-rw-r--r-- | src/emu/cpu/g65816/g65816cm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/cpu/g65816/g65816cm.h b/src/emu/cpu/g65816/g65816cm.h index 054a32a0c1a..12a76ac972b 100644 --- a/src/emu/cpu/g65816/g65816cm.h +++ b/src/emu/cpu/g65816/g65816cm.h @@ -67,8 +67,7 @@ INLINE int MAKE_INT_8(int A) {return (A & 0x80) ? A | ~0xff : A & 0xff;} /* ======================================================================== */ /* CPU Structure */ -typedef struct _g65816i_cpu_struct g65816i_cpu_struct; -struct _g65816i_cpu_struct +struct g65816i_cpu_struct { uint a; /* Accumulator */ uint b; /* holds high byte of accumulator */ |