summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/rt1715.cpp2
-rw-r--r--src/mame/includes/mw8080bw.h7
-rw-r--r--src/mame/video/gime.cpp12
3 files changed, 8 insertions, 13 deletions
diff --git a/src/mame/drivers/rt1715.cpp b/src/mame/drivers/rt1715.cpp
index 5f426cad32e..271d03ded1c 100644
--- a/src/mame/drivers/rt1715.cpp
+++ b/src/mame/drivers/rt1715.cpp
@@ -43,7 +43,7 @@
#define LOG_BANK (1U << 1)
#define VERBOSE (LOG_GENERAL)
-//#define LOG_OUTPUT_FUNC printf
+//#define LOG_OUTPUT_FUNC osd_printf_info
#include "logmacro.h"
#define LOGBANK(format, ...) LOGMASKED(LOG_BANK, "%11.6f at %s: " format, machine().time().as_double(), machine().describe_context(), __VA_ARGS__)
diff --git a/src/mame/includes/mw8080bw.h b/src/mame/includes/mw8080bw.h
index d9a17ebd9d4..cd25098428b 100644
--- a/src/mame/includes/mw8080bw.h
+++ b/src/mame/includes/mw8080bw.h
@@ -379,19 +379,14 @@ class zzzap_state : public mw8080bw_state
{
public:
zzzap_state(machine_config const &mconfig, device_type type, char const *tag) :
- mw8080bw_state(mconfig, type, tag),
- m_soundboard(*this, "soundboard")
+ mw8080bw_state(mconfig, type, tag)
{
}
void zzzap(machine_config &config);
private:
- void io_w(offs_t offset, u8 data);
-
void io_map(address_map &map);
-
- required_device<zzzap_audio_device> m_soundboard;
};
diff --git a/src/mame/video/gime.cpp b/src/mame/video/gime.cpp
index a11e00dd637..976616d73d7 100644
--- a/src/mame/video/gime.cpp
+++ b/src/mame/video/gime.cpp
@@ -569,14 +569,14 @@ void gime_device::update_memory(int bank)
// are we in onboard ROM or cart ROM?
if (block > 3)
{
- if( m_cart_rom)
+ if (m_cart_rom)
{
// perform the look up
memory = &m_cart_rom[((block & 3) * 0x2000) % m_cart_size];
}
else
{
- memory = 0;
+ memory = 0;
}
}
else
@@ -596,11 +596,11 @@ void gime_device::update_memory(int bank)
memory += offset;
// set the banks
- if( memory )
+ if (memory)
{
- read_bank->set_base(memory);
- write_bank->set_base(is_read_only ? m_dummy_bank : memory);
-}
+ read_bank->set_base(memory);
+ write_bank->set_base(is_read_only ? m_dummy_bank : memory);
+ }
else
{
read_bank->set_base(m_dummy_bank);