summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-11-25 11:49:51 +1100
committer Vas Crabb <vas@vastheman.com>2018-11-25 11:49:51 +1100
commitf99c502820eac58590f99f840bdf4b90196066aa (patch)
tree033834459f68a24609126c4b201db21b308b563b /src/devices/bus/bbc
parent5babaee6238c5d5b8298daf2f3fe3c7b48457756 (diff)
srcclean and fixup (nw)
Diffstat (limited to 'src/devices/bus/bbc')
-rw-r--r--src/devices/bus/bbc/1mhzbus/ieee488.cpp24
-rw-r--r--src/devices/bus/bbc/1mhzbus/ieee488.h24
2 files changed, 24 insertions, 24 deletions
diff --git a/src/devices/bus/bbc/1mhzbus/ieee488.cpp b/src/devices/bus/bbc/1mhzbus/ieee488.cpp
index 1b648b51a72..15f7f573ec2 100644
--- a/src/devices/bus/bbc/1mhzbus/ieee488.cpp
+++ b/src/devices/bus/bbc/1mhzbus/ieee488.cpp
@@ -42,12 +42,12 @@ ROM_START(ieee488)
ROM_END
//ROM_START(procyon)
-// ROM_REGION(0x2000, "exp_rom", 0)
-// ROM_DEFAULT_BIOS("ieee198")
-// ROM_SYSTEM_BIOS(0, "ieee198", "IEEE 1.98")
-// ROMX_LOAD("ieee-1.98.rom", 0x0000, 0x2000, CRC(c2bbe17b) SHA1(96930b54d987dd1e4a87f546f7cd65fc1f0b9578), ROM_BIOS(0))
-// ROM_SYSTEM_BIOS(1, "ieee192", "IEEE 1.92")
-// ROMX_LOAD("ieee-1.92.rom", 0x0000, 0x2000, CRC(87e5f701) SHA1(673eab99031ca88aa90e6deade39b653f8c6b9da), ROM_BIOS(1))
+// ROM_REGION(0x2000, "exp_rom", 0)
+// ROM_DEFAULT_BIOS("ieee198")
+// ROM_SYSTEM_BIOS(0, "ieee198", "IEEE 1.98")
+// ROMX_LOAD("ieee-1.98.rom", 0x0000, 0x2000, CRC(c2bbe17b) SHA1(96930b54d987dd1e4a87f546f7cd65fc1f0b9578), ROM_BIOS(0))
+// ROM_SYSTEM_BIOS(1, "ieee192", "IEEE 1.92")
+// ROMX_LOAD("ieee-1.92.rom", 0x0000, 0x2000, CRC(87e5f701) SHA1(673eab99031ca88aa90e6deade39b653f8c6b9da), ROM_BIOS(1))
//ROM_END
//-------------------------------------------------
@@ -137,7 +137,7 @@ const tiny_rom_entry *bbc_ieee488_device::device_rom_region() const
//const tiny_rom_entry *bbc_procyon_device::device_rom_region() const
//{
-// return ROM_NAME(procyon);
+// return ROM_NAME(procyon);
//}
//**************************************************************************
@@ -166,9 +166,9 @@ bbc_b488_device::bbc_b488_device(const machine_config &mconfig, const char *tag,
}
//bbc_procyon_device::bbc_procyon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
-// : device_t(mconfig, BBC_PROCYON, tag, owner, clock)
-// , device_bbc_1mhzbus_interface(mconfig, *this)
-// , m_ieee(*this, IEEE488_TAG)
+// : device_t(mconfig, BBC_PROCYON, tag, owner, clock)
+// , device_bbc_1mhzbus_interface(mconfig, *this)
+// , m_ieee(*this, IEEE488_TAG)
//{
//}
@@ -258,7 +258,7 @@ WRITE8_MEMBER(bbc_b488_device::fred_w)
//if (offset >= 0x20 && offset < 0x28)
//{
- // data = mc68488_device->reg8_r(space, offset & 0x07);
+ // data = mc68488_device->reg8_r(space, offset & 0x07);
//}
//return data;
@@ -268,6 +268,6 @@ WRITE8_MEMBER(bbc_b488_device::fred_w)
//{
//if (offset >= 0x20 && offset < 0x28)
//{
- // mc68488_device->reg8_w(space, offset & 0x07, data);
+ // mc68488_device->reg8_w(space, offset & 0x07, data);
//}
//}
diff --git a/src/devices/bus/bbc/1mhzbus/ieee488.h b/src/devices/bus/bbc/1mhzbus/ieee488.h
index e1169c0d02a..05a9e60c928 100644
--- a/src/devices/bus/bbc/1mhzbus/ieee488.h
+++ b/src/devices/bus/bbc/1mhzbus/ieee488.h
@@ -79,26 +79,26 @@ private:
//class bbc_procyon_device :
-// public device_t,
-// public device_bbc_1mhzbus_interface
+// public device_t,
+// public device_bbc_1mhzbus_interface
//{
//public:
-// // construction/destruction
-// bbc_procyon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+// // construction/destruction
+// bbc_procyon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
//
//protected:
-// // device-level overrides
-// virtual void device_start() override;
+// // device-level overrides
+// virtual void device_start() override;
//
-// // optional information overrides
-// virtual void device_add_mconfig(machine_config &config) override;
-// virtual const tiny_rom_entry *device_rom_region() const override;
+// // optional information overrides
+// virtual void device_add_mconfig(machine_config &config) override;
+// virtual const tiny_rom_entry *device_rom_region() const override;
//
-// virtual DECLARE_READ8_MEMBER(fred_r) override;
-// virtual DECLARE_WRITE8_MEMBER(fred_w) override;
+// virtual DECLARE_READ8_MEMBER(fred_r) override;
+// virtual DECLARE_WRITE8_MEMBER(fred_w) override;
//
//private:
-// required_device<ieee488_device> m_ieee;
+// required_device<ieee488_device> m_ieee;
//};