mirror of
https://github.com/holub/mame
synced 2025-04-22 08:22:15 +03:00
new not working machine
---------------------------------- Ez2dancer 2nd Move [RetroRepair, Guru]
This commit is contained in:
parent
4417ce41b2
commit
ae59e0ff2e
@ -4504,6 +4504,7 @@ files {
|
||||
MAME_DIR .. "src/mame/video/esripsys.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/ettrivia.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/extrema.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/ez2d.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/fastinvaders.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/fireball.cpp",
|
||||
MAME_DIR .. "src/mame/drivers/flipjack.cpp",
|
||||
|
@ -359,6 +359,7 @@ exprraid.cpp
|
||||
exterm.cpp
|
||||
extrema.cpp
|
||||
exzisus.cpp
|
||||
ez2d.cpp
|
||||
f1gp.cpp
|
||||
f-32.cpp
|
||||
famibox.cpp
|
||||
|
117
src/mame/drivers/ez2d.cpp
Normal file
117
src/mame/drivers/ez2d.cpp
Normal file
@ -0,0 +1,117 @@
|
||||
// license:BSD-3-Clause
|
||||
// copyright-holders:Ivan Vangelista
|
||||
/*
|
||||
Thanks to Guru for hardware infos and pics for Ez2dancer 2nd Move.
|
||||
Later games in the series might run on newer, beefier hardware.
|
||||
|
||||
ASUS CUBX-103 motherboard
|
||||
Intel Celeron 533 MHz CPU
|
||||
128 MB PC100 DIMM RAM
|
||||
Fujitsu MPD3043AT HD (4.3GB) - The ez2d2m dump in this driver comes from a different, bigger hd
|
||||
Leadtek Winfast 3D S325 32MB Video Card (might not be the original one)
|
||||
Sound Blaster Live CT4830 Sound Card
|
||||
EZ2D-IOCARD-c
|
||||
Hardlock E-Y-E security dongle
|
||||
|
||||
Other games thought to run on this or derived hardware:
|
||||
Ez2Dancer series:
|
||||
* Ez2Dancer 1st Move (2000)
|
||||
* Ez2Dancer UK Move(2002)
|
||||
* Ez2Dancer UK Move Special Edition (2003)
|
||||
* Ez2Dancer SuperChina (2004)
|
||||
|
||||
Ez2DJ series:
|
||||
* Ez2Dj The 1st Tracks (1999)
|
||||
* Ez2DJ The 1st Tracks Special Edition (1999)
|
||||
* Ez2DJ 2nd TraX: It Rules Once Again (2000)
|
||||
* Ez2DJ 3rd TraX: Absolute Pitch (2001)
|
||||
* Ez2DJ 4th TraX: Over Mind (2002)
|
||||
* Ez2DJ Mini (2003)
|
||||
* Ez2DJ Dual Platinum (2003)
|
||||
* Ez2DJ Platinum: Limited Edition (2003)
|
||||
* Ez2DJ Single (2004)
|
||||
* Ez2DJ 6th TraX: Self Evolution (2004)
|
||||
* Ez2DJ 7th TraX: Resistance (2007)
|
||||
* Ez2DJ 7th TraX Class R Codename: Violet (2009)
|
||||
* Ez2DJ 7th TraX: Bonus Edition (2011)
|
||||
* Ez2DJ Azure Expression (2012)
|
||||
* Ez2DJ Azure Expression: Integral Composition (2012)
|
||||
*/
|
||||
|
||||
#include "emu.h"
|
||||
#include "cpu/i386/i386.h"
|
||||
#include "screen.h"
|
||||
|
||||
class ez2d_state : public driver_device
|
||||
{
|
||||
public:
|
||||
ez2d_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||
: driver_device(mconfig, type, tag),
|
||||
m_maincpu(*this, "maincpu")
|
||||
{ }
|
||||
|
||||
required_device<cpu_device> m_maincpu;
|
||||
|
||||
virtual void machine_start() override;
|
||||
virtual void machine_reset() override;
|
||||
virtual void video_start() override;
|
||||
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||
};
|
||||
|
||||
void ez2d_state::video_start()
|
||||
{
|
||||
}
|
||||
|
||||
uint32_t ez2d_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static ADDRESS_MAP_START( ez2d_map, AS_PROGRAM, 32, ez2d_state )
|
||||
ADDRESS_MAP_END
|
||||
|
||||
static INPUT_PORTS_START( ez2d )
|
||||
INPUT_PORTS_END
|
||||
|
||||
|
||||
void ez2d_state::machine_start()
|
||||
{
|
||||
}
|
||||
|
||||
void ez2d_state::machine_reset()
|
||||
{
|
||||
}
|
||||
|
||||
static MACHINE_CONFIG_START( ez2d )
|
||||
|
||||
/* basic machine hardware */
|
||||
MCFG_CPU_ADD("maincpu", PENTIUM3, 100000000) // actually a Celeron at 533 MHz
|
||||
MCFG_CPU_PROGRAM_MAP(ez2d_map)
|
||||
|
||||
/* video hardware */
|
||||
MCFG_SCREEN_ADD("screen", RASTER)
|
||||
MCFG_SCREEN_REFRESH_RATE(60)
|
||||
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(0))
|
||||
MCFG_SCREEN_SIZE(640, 480)
|
||||
MCFG_SCREEN_VISIBLE_AREA(0, 640-1, 0, 480-1)
|
||||
MCFG_SCREEN_UPDATE_DRIVER(ez2d_state, screen_update)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
/***************************************************************************
|
||||
|
||||
Game drivers
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
ROM_START( ez2d2m )
|
||||
ROM_REGION(0x40000, "bios", 0) \
|
||||
ROM_LOAD("Ez2dancer2ndMove_Motherboard_V29C51002T_Award_BIOS", 0x00000, 0x40000, CRC(02a5e84b) SHA1(94b341d268ce9d42597c68bc98c3b8b62e137205) ) // 29f020
|
||||
|
||||
ROM_REGION( 0x10000, "vbios", 0 ) // video card BIOS, not dumped but downloaded from internet
|
||||
ROM_LOAD( "62090211.rom", 0x000000, 0x00b000, CRC(5669135b) SHA1(b704ce0d20b71e40563d12bcc45bd1240227be74) )
|
||||
|
||||
DISK_REGION( "ide:0:hdd:image" )
|
||||
DISK_IMAGE( "ez2d2m", 0, SHA1(939e6b202c270477ff0a5db070b28ac90dc2d84c) )
|
||||
ROM_END
|
||||
|
||||
GAME( 2001, ez2d2m, 0, ez2d, ez2d, ez2d_state, 0, ROT0, "Amuse World", "Ez2dancer 2nd Move", MACHINE_IS_SKELETON )
|
@ -12318,6 +12318,9 @@ exzisus // B12 (c) 1987 Taito Corporation (Japan)
|
||||
exzisusa // B23 (c) 1987 Taito Corporation (Japan)
|
||||
exzisust // B23 (c) 1987 TAD Corp (based on Japan Conversion)
|
||||
|
||||
@source:ez2d.cpp
|
||||
ez2d2m // 2001 Amuse World
|
||||
|
||||
@source:f1gp.cpp
|
||||
f1gp // (c) 1991 Video System Co.
|
||||
f1gp2 // (c) 1992 Video System Co.
|
||||
|
Loading…
Reference in New Issue
Block a user