diff options
Diffstat (limited to 'src/mame/drivers/atlantis.cpp')
-rw-r--r-- | src/mame/drivers/atlantis.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/atlantis.cpp b/src/mame/drivers/atlantis.cpp index 3ebb3a5867d..80c2ead9040 100644 --- a/src/mame/drivers/atlantis.cpp +++ b/src/mame/drivers/atlantis.cpp @@ -89,9 +89,9 @@ namespace { // IDSEL = AD22, PCI expansion // IDSEL = AD23, PCI expansion // IDSEL = AD24, PCI expansion -#define PCI_ID_IDE ":pci:08.0" -#define PCI_ID_NILE ":pci:0a.0" -#define PCI_ID_9050 ":pci:0b.0" +#define PCI_ID_IDE "pci:08.0" +#define PCI_ID_NILE "pci:0a.0" +#define PCI_ID_9050 "pci:0b.0" #define DEBUG_CONSOLE (0) #define LOG_RTC (0) @@ -101,8 +101,8 @@ namespace { class atlantis_state : public driver_device { public: - atlantis_state(const machine_config &mconfig, device_type type, const char *tag) - : driver_device(mconfig, type, tag), + atlantis_state(const machine_config &mconfig, device_type type, const char *tag) : + driver_device(mconfig, type, tag), m_maincpu(*this, "maincpu"), m_screen(*this, "screen"), m_palette(*this, "palette"), @@ -814,7 +814,7 @@ void atlantis_state::mwskins(machine_config &config) m_maincpu->set_dcache_size(16384); m_maincpu->set_system_clock(66666666); - PCI_ROOT(config, ":pci", 0); + PCI_ROOT(config, "pci", 0); vrc4373_device &vrc4373(VRC4373(config, PCI_ID_NILE, 0, m_maincpu)); vrc4373.set_ram_size(0x00800000); |