mirror of
https://github.com/holub/mame
synced 2025-06-11 07:14:07 +03:00
ice_hhhippos.cpp: Add PCB ASCII layout and anonymous namespace
This commit is contained in:
parent
dca104bfbe
commit
24fcb22195
@ -4,11 +4,55 @@
|
|||||||
|
|
||||||
Skeleton driver for Hungry Hungry Hippos redemption game by I.C.E. Inc.
|
Skeleton driver for Hungry Hungry Hippos redemption game by I.C.E. Inc.
|
||||||
|
|
||||||
|
_________________________________________________________________________
|
||||||
|
| ___ ___ _____ ___ ___ _ |
|
||||||
|
| |__| FUSE |ooo| |o| |··| (_) |
|
||||||
|
| |ooo| |o| COUNTER VOLUME ____ ____ |
|
||||||
|
| |ooo| DOME CONTROL LM358 LM358 |
|
||||||
|
| ___ |ooo| LIGHT |
|
||||||
|
| _ ___ |__| O<-LED ___ ______________ ______________ |
|
||||||
|
| (_) |__| ___ FUSE | U119 | | U122 | |
|
||||||
|
|SPEED ____FUSE |_____________| |_____________| |
|
||||||
|
| ___ |oo| _______ _______ _______ _______ |
|
||||||
|
|FUSE |oo| 74HC4040 74HC4060 74HC4040 74HC4060 |
|
||||||
|
| O<-LED |oo| ____ SW _________ |
|
||||||
|
| __ ____ LED->O XTAL START |__CONN__| |
|
||||||
|
| | | |oo| LM340AT 2.000 ________ ________ |
|
||||||
|
| | | |oo| 74HC08N 74HC138AN BATT |
|
||||||
|
| |_| |oo| ________________ 3.2V |
|
||||||
|
| LM723CN ____ TIP115 | MC68HC705C8P | |
|
||||||
|
| O<-LED |oo| _____ |_______________| _____ |
|
||||||
|
| __ |oo| |ooo| ________ ________ |ooo| |
|
||||||
|
| | | |oo| |ooo| 74HC174P 74HC174P |ooo| |
|
||||||
|
| | | ____ |ooo| ________ ________ |ooo| |
|
||||||
|
| |_| |oo| |ooo| 74HC174P 74HC174P |ooo| TIP115
|
||||||
|
| LM723CN |oo| TIP115 _____ ________ ________ _____ |
|
||||||
|
| |oo| |ooo| 74HC174P 74HC174P |ooo| |
|
||||||
|
| ___ ___ |ooo| ________ ________ |ooo| |
|
||||||
|
| |__| |__| |ooo| 74HC174P 74HC174P |ooo| |
|
||||||
|
| |ooo| ________ ________ |ooo| TIP115
|
||||||
|
| ___ ___ SW SW SW SW 74HC153N 74HC153N |
|
||||||
|
| |__| |__| PROG SEL STEP TST |
|
||||||
|
|________________________________________________________________________|
|
||||||
|
|
||||||
|
For each hippo there's an eaten ball counter (two digits 7-seg display with 8 leds)
|
||||||
|
_______________________________
|
||||||
|
| ___ _______ _______ ___ |
|
||||||
|
| | | | ___ | | ___ | | | |
|
||||||
|
MC14499P->| | | |__| | | |__| | | |<- TP03904
|
||||||
|
| | | |o|__|o| |o|__|o| | | |
|
||||||
|
| |__| |______| |______| |__| |
|
||||||
|
| O O O O O O O O <- 8 leds
|
||||||
|
|_______________________________|
|
||||||
|
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#include "emu.h"
|
#include "emu.h"
|
||||||
#include "cpu/m6805/m68hc05.h"
|
#include "cpu/m6805/m68hc05.h"
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
|
||||||
class ice_hhhippos_state : public driver_device
|
class ice_hhhippos_state : public driver_device
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -45,4 +89,6 @@ ROM_START(hhhippos)
|
|||||||
ROM_LOAD("u122.bin", 0x00000, 0x20000, CRC(fc188905) SHA1(7bab8feb1f304c9fe7cde31aff4b40e2db56d525))
|
ROM_LOAD("u122.bin", 0x00000, 0x20000, CRC(fc188905) SHA1(7bab8feb1f304c9fe7cde31aff4b40e2db56d525))
|
||||||
ROM_END
|
ROM_END
|
||||||
|
|
||||||
|
} // anonymous namespace
|
||||||
|
|
||||||
GAME(1991, hhhippos, 0, hhhippos, hhhippos, ice_hhhippos_state, empty_init, ROT0, "ICE (Innovative Concepts in Entertainment)", "Hungry Hungry Hippos (redemption game)", MACHINE_IS_SKELETON_MECHANICAL)
|
GAME(1991, hhhippos, 0, hhhippos, hhhippos, ice_hhhippos_state, empty_init, ROT0, "ICE (Innovative Concepts in Entertainment)", "Hungry Hungry Hippos (redemption game)", MACHINE_IS_SKELETON_MECHANICAL)
|
||||||
|
Loading…
Reference in New Issue
Block a user