diff options
author | 2008-12-17 05:52:10 +0000 | |
---|---|---|
committer | 2008-12-17 05:52:10 +0000 | |
commit | e2ae5c7fa3248c2d4a204b298b0bf736e8f991f9 (patch) | |
tree | 452dd7fa6663ae6c0856a4d186876656f314bcd1 /src/emu/cpu/h83002 | |
parent | ab8b93e1d1ced7de5fc96148db3a0eb219d29bd0 (diff) |
From: Atari Ace [atari_ace@verizon.net]
Sent: Tuesday, December 16, 2008 12:20 PM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] Migrate CPU defines to cpu header files
Hi mamedev,
This patch migrates all the CPU definitions into the cpu header files.
The #defines and CPU_GET_INFO declarations were added by hand to the
cpu cores in the first patch, plus a few partly related fixes to the
non-DRC cores. The second patch was produced by the attached script
which inserts all needed #includes, except for two that were added by
hand in the first patch. The first patch also removed an extra define
of N2A03_DEFAULTCLOCK that would have caused problems with the second
patch.
~aa
Diffstat (limited to 'src/emu/cpu/h83002')
-rw-r--r-- | src/emu/cpu/h83002/h8.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/emu/cpu/h83002/h8.h b/src/emu/cpu/h83002/h8.h index d396f7a24fe..9080b9ce4c1 100644 --- a/src/emu/cpu/h83002/h8.h +++ b/src/emu/cpu/h83002/h8.h @@ -86,8 +86,15 @@ enum H8_SERIAL_1, }; -CPU_GET_INFO( h8_300 ); CPU_GET_INFO( h8_3002 ); -CPU_GET_INFO( h8_3344 ); +CPU_GET_INFO( h8_3007 ); +CPU_GET_INFO( h8_3044 ); +CPU_GET_INFO( h8_3334 ); + +#define CPU_H83002 CPU_GET_INFO_NAME( h8_3002 ) +#define CPU_H83007 CPU_GET_INFO_NAME( h8_3007 ) +#define CPU_H83044 CPU_GET_INFO_NAME( h8_3044 ) +#define CPU_H83334 CPU_GET_INFO_NAME( h8_3334 ) + #endif /* __H83002_H__ */ |