mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
My addition of the amiga fdc to the amiga arcade hardware was frighteningly incomplete (nw)
This commit is contained in:
parent
b0f3c051a8
commit
734aa1782a
@ -27,6 +27,7 @@
|
||||
#include "machine/laserdsc.h"
|
||||
#include "machine/6526cia.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/amigafdc.h"
|
||||
|
||||
|
||||
class alg_state : public amiga_state
|
||||
@ -467,6 +468,9 @@ static MACHINE_CONFIG_START( alg_r1, alg_state )
|
||||
/* cia */
|
||||
MCFG_MOS8520_ADD("cia_0", AMIGA_68000_NTSC_CLOCK / 10, cia_0_intf)
|
||||
MCFG_MOS8520_ADD("cia_1", AMIGA_68000_NTSC_CLOCK / 10, cia_1_intf)
|
||||
|
||||
/* fdc */
|
||||
MCFG_AMIGA_FDC_ADD("fdc", AMIGA_68000_NTSC_CLOCK)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -52,6 +52,7 @@
|
||||
#include "includes/amiga.h"
|
||||
#include "machine/6526cia.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/amigafdc.h"
|
||||
|
||||
|
||||
|
||||
@ -333,6 +334,9 @@ static MACHINE_CONFIG_START( arcadia, arcadia_state )
|
||||
/* cia */
|
||||
MCFG_MOS8520_ADD("cia_0", AMIGA_68000_NTSC_CLOCK / 10, cia_0_intf)
|
||||
MCFG_MOS8520_ADD("cia_1", AMIGA_68000_NTSC_CLOCK / 10, cia_1_intf)
|
||||
|
||||
/* fdc */
|
||||
MCFG_AMIGA_FDC_ADD("fdc", AMIGA_68000_NTSC_CLOCK)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -36,6 +36,7 @@
|
||||
#include "sound/cdda.h"
|
||||
#include "imagedev/chd_cd.h"
|
||||
#include "machine/microtch.h"
|
||||
#include "machine/amigafdc.h"
|
||||
|
||||
#define CD32PAL_XTAL_X1 XTAL_28_37516MHz
|
||||
#define CD32PAL_XTAL_X2 XTAL_4_433619MHz
|
||||
@ -799,6 +800,9 @@ static MACHINE_CONFIG_START( cd32base, cd32_state )
|
||||
/* cia */
|
||||
MCFG_MOS8520_ADD("cia_0", AMIGA_68EC020_PAL_CLOCK / 10, cia_0_intf)
|
||||
MCFG_MOS8520_ADD("cia_1", AMIGA_68EC020_PAL_CLOCK / 10, cia_1_intf)
|
||||
|
||||
/* fdc */
|
||||
MCFG_AMIGA_FDC_ADD("fdc", AMIGA_68000_NTSC_CLOCK)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
struct cdrom_interface cd32_cdrom =
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "sound/es5503.h"
|
||||
#include "machine/6526cia.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/amigafdc.h"
|
||||
|
||||
|
||||
|
||||
@ -382,6 +383,9 @@ static MACHINE_CONFIG_START( mquake, amiga_state )
|
||||
/* cia */
|
||||
MCFG_MOS8520_ADD("cia_0", AMIGA_68000_NTSC_CLOCK / 10, cia_0_intf)
|
||||
MCFG_MOS8520_ADD("cia_1", AMIGA_68000_NTSC_CLOCK / 10, cia_1_intf)
|
||||
|
||||
/* fdc */
|
||||
MCFG_AMIGA_FDC_ADD("fdc", AMIGA_68000_NTSC_CLOCK)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "includes/amiga.h"
|
||||
#include "machine/6526cia.h"
|
||||
#include "machine/nvram.h"
|
||||
#include "machine/amigafdc.h"
|
||||
|
||||
|
||||
class upscope_state : public amiga_state
|
||||
@ -343,6 +344,9 @@ static MACHINE_CONFIG_START( upscope, upscope_state )
|
||||
/* cia */
|
||||
MCFG_MOS8520_ADD("cia_0", AMIGA_68000_NTSC_CLOCK / 10, cia_0_intf)
|
||||
MCFG_MOS8520_ADD("cia_1", AMIGA_68000_NTSC_CLOCK / 10, cia_1_intf)
|
||||
|
||||
/* fdc */
|
||||
MCFG_AMIGA_FDC_ADD("fdc", AMIGA_68000_NTSC_CLOCK)
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user