mirror of
https://github.com/holub/mame
synced 2025-04-16 21:44:32 +03:00
New NOT_WORKING machine (#9178)
New machines marked as NOT_WORKING ----------------------- Neo Mania [ClawGrip, CrispX]
This commit is contained in:
parent
c60785f820
commit
7c1ec79705
@ -5035,6 +5035,7 @@ files {
|
|||||||
MAME_DIR .. "src/mame/drivers/multfish_boot.cpp",
|
MAME_DIR .. "src/mame/drivers/multfish_boot.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/murogem.cpp",
|
MAME_DIR .. "src/mame/drivers/murogem.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/murogmbl.cpp",
|
MAME_DIR .. "src/mame/drivers/murogmbl.cpp",
|
||||||
|
MAME_DIR .. "src/mame/drivers/neomania.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/neoprint.cpp",
|
MAME_DIR .. "src/mame/drivers/neoprint.cpp",
|
||||||
MAME_DIR .. "src/mame/drivers/news.cpp",
|
MAME_DIR .. "src/mame/drivers/news.cpp",
|
||||||
MAME_DIR .. "src/mame/includes/news.h",
|
MAME_DIR .. "src/mame/includes/news.h",
|
||||||
|
@ -901,6 +901,7 @@ nbmj8991.cpp
|
|||||||
nbmj9195.cpp
|
nbmj9195.cpp
|
||||||
nemesis.cpp
|
nemesis.cpp
|
||||||
neogeo.cpp
|
neogeo.cpp
|
||||||
|
neomania.cpp
|
||||||
neopcb.cpp
|
neopcb.cpp
|
||||||
neoprint.cpp
|
neoprint.cpp
|
||||||
neptunp2.cpp
|
neptunp2.cpp
|
||||||
|
100
src/mame/drivers/neomania.cpp
Normal file
100
src/mame/drivers/neomania.cpp
Normal file
@ -0,0 +1,100 @@
|
|||||||
|
// license:BSD-3-Clause
|
||||||
|
// copyright-holders:
|
||||||
|
/*
|
||||||
|
Neo Mania:
|
||||||
|
PC with Windows 98 (exact hardware not specified) and a Neo·Geo emulator, with a small PCB for converting
|
||||||
|
VGA + Parallel port (inputs) + sound (with volume knob) to JAMMA (named "NEO MANIA ADAPTER BOARD").
|
||||||
|
The "NEO MANIA ADAPTER BOARD" contains:
|
||||||
|
2 x Jumpers tio enable or disable features:
|
||||||
|
JMP1 (two positions) - With or Without Coin Dist.
|
||||||
|
JMP2 (two positions) - With or without Audio Amplifier
|
||||||
|
JMP3 (three positions) - Unknown function
|
||||||
|
2 x Coin acceptors ports
|
||||||
|
1 x Bank of 8 dipswitches (unknown function)
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "emu.h"
|
||||||
|
#include "cpu/i386/i386.h"
|
||||||
|
#include "screen.h"
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
class neomania_state : public driver_device
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
neomania_state(const machine_config &mconfig, device_type type, const char *tag)
|
||||||
|
: driver_device(mconfig, type, tag),
|
||||||
|
m_maincpu(*this, "maincpu")
|
||||||
|
{ }
|
||||||
|
|
||||||
|
void neomania(machine_config &config);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual void machine_start() override;
|
||||||
|
virtual void machine_reset() override;
|
||||||
|
virtual void video_start() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
required_device<cpu_device> m_maincpu;
|
||||||
|
|
||||||
|
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
|
||||||
|
void neomania_map(address_map &map);
|
||||||
|
};
|
||||||
|
|
||||||
|
void neomania_state::video_start()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t neomania_state::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void neomania_state::neomania_map(address_map &map)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
static INPUT_PORTS_START( neomania )
|
||||||
|
INPUT_PORTS_END
|
||||||
|
|
||||||
|
|
||||||
|
void neomania_state::machine_start()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void neomania_state::machine_reset()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void neomania_state::neomania(machine_config &config)
|
||||||
|
{
|
||||||
|
// Basic machine hardware
|
||||||
|
PENTIUM3(config, m_maincpu, 600'000'000); // Exact hardware not specified
|
||||||
|
m_maincpu->set_addrmap(AS_PROGRAM, &neomania_state::neomania_map);
|
||||||
|
|
||||||
|
// Video hardware
|
||||||
|
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
|
||||||
|
screen.set_refresh_hz(60);
|
||||||
|
screen.set_vblank_time(ATTOSECONDS_IN_USEC(0));
|
||||||
|
screen.set_size(640, 480);
|
||||||
|
screen.set_visarea(0, 640-1, 0, 480-1);
|
||||||
|
screen.set_screen_update(FUNC(neomania_state::screen_update));
|
||||||
|
}
|
||||||
|
|
||||||
|
/***************************************************************************
|
||||||
|
Game drivers
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
ROM_START( neomania )
|
||||||
|
|
||||||
|
// Different PC motherboards with different configurations.
|
||||||
|
ROM_REGION(0x80000, "bios", 0)
|
||||||
|
ROM_LOAD("pcbios.bin", 0x00000, 0x80000, NO_DUMP) // MB BIOS
|
||||||
|
|
||||||
|
DISK_REGION( "ide:0:hdd:image" ) // From a Norton Ghost recovery image
|
||||||
|
DISK_IMAGE( "neomania", 0, SHA1(4a865d1ed67901b98b37f94cfdd591fad38b404a) )
|
||||||
|
ROM_END
|
||||||
|
|
||||||
|
} // Anonymous namespace
|
||||||
|
|
||||||
|
GAME( 2002, neomania, 0, neomania, neomania, neomania_state, empty_init, ROT0, "bootleg", "Neo Mania", MACHINE_IS_SKELETON ) // Neo·Geo emulator from 2002
|
@ -32909,6 +32909,9 @@ zedblade // 0076 (c) 1994 NMK
|
|||||||
zintrckb // 0211 hack - this is not a genuine MVS proto, its a bootleg made from the CD version
|
zintrckb // 0211 hack - this is not a genuine MVS proto, its a bootleg made from the CD version
|
||||||
zupapa // 0070 Zupapa - released in 2001, 1994 prototype probably exists
|
zupapa // 0070 Zupapa - released in 2001, 1994 prototype probably exists
|
||||||
|
|
||||||
|
@source:neomania.cpp
|
||||||
|
neomania // bootleg
|
||||||
|
|
||||||
@source:neopcb.cpp
|
@source:neopcb.cpp
|
||||||
kf2k3pcb // 0271 (c) 2003 Playmore - JAMMA PCB
|
kf2k3pcb // 0271 (c) 2003 Playmore - JAMMA PCB
|
||||||
ms5pcb // 0268 (c) 2003 Playmore - JAMMA PCB
|
ms5pcb // 0268 (c) 2003 Playmore - JAMMA PCB
|
||||||
|
Loading…
Reference in New Issue
Block a user