diff options
author | 2011-01-01 11:47:49 +0000 | |
---|---|---|
committer | 2011-01-01 11:47:49 +0000 | |
commit | db14e98dd0439e42945faa510b210a537341b3b7 (patch) | |
tree | 5c68a8fa4aaed5d8f5c0dbd25308a3443b72e782 /src/emu/cpu/pps4/pps4.h | |
parent | 8a21a21c464782dfd6efb4cf2399adf6994ded5f (diff) |
- Added Rockwell PPS4 CPU core (not finished) [Miodrag Milanovic]
- Added GAME_MECHANICAL flag to mark games having mechanical interface (such as pinball,redemption, bowling games ...)
- Imported games from PinMAME as skeletons
Diffstat (limited to 'src/emu/cpu/pps4/pps4.h')
-rw-r--r-- | src/emu/cpu/pps4/pps4.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/emu/cpu/pps4/pps4.h b/src/emu/cpu/pps4/pps4.h new file mode 100644 index 00000000000..8a32f71a612 --- /dev/null +++ b/src/emu/cpu/pps4/pps4.h @@ -0,0 +1,28 @@ +#ifndef __PPS4_H__ +#define __PPS4_H__ + + +/*************************************************************************** + CONSTANTS +***************************************************************************/ +enum +{ + PPS4_PC, + PPS4_A,PPS4_X,PPS4_SA,PPS4_SB,PPS4_B, + PPS4_GENPC = STATE_GENPC, + PPS4_GENSP = STATE_GENSP, + PPS4_GENPCBASE = STATE_GENPCBASE +}; + +/*************************************************************************** + TYPE DEFINITIONS +***************************************************************************/ + +/*************************************************************************** + FUNCTION PROTOTYPES +***************************************************************************/ + +DECLARE_LEGACY_CPU_DEVICE( PPS4, pps4 ); + +CPU_DISASSEMBLE( pps4 ); +#endif |