summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2009-12-30 20:11:55 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2009-12-30 20:11:55 +0000
commitd19987182c4e5f56d1fcff66da3d6fb9c000a959 (patch)
tree2435aa229fcb647a427883134e3b4b2d50fa4701
parent2d26bc8efbfba0943c5e87174d0817fbf99a2f12 (diff)
megadriv.c/megatech.c - Some cleanup of a small handful of printf's related to cart ID and selection (no whatsnew needed)
-rw-r--r--src/mame/drivers/megadriv.c2
-rw-r--r--src/mame/drivers/megatech.c8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/megadriv.c b/src/mame/drivers/megadriv.c
index 979c6bf6ff9..36d48cf6005 100644
--- a/src/mame/drivers/megadriv.c
+++ b/src/mame/drivers/megadriv.c
@@ -6252,7 +6252,7 @@ static void megadriv_init_common(running_machine *machine)
_genesis_snd_z80_cpu = cputag_get_cpu(machine, "genesis_snd_z80");
if (_genesis_snd_z80_cpu != NULL)
{
- printf("GENESIS Sound Z80 cpu found %d\n", cpu_get_index(_genesis_snd_z80_cpu) );
+ //printf("GENESIS Sound Z80 cpu found %d\n", cpu_get_index(_genesis_snd_z80_cpu) );
genz80.z80_prgram = auto_alloc_array(machine, UINT8, 0x2000);
memory_set_bankptr(machine, "bank1", genz80.z80_prgram );
diff --git a/src/mame/drivers/megatech.c b/src/mame/drivers/megatech.c
index c346214279f..c75ac1b8f27 100644
--- a/src/mame/drivers/megatech.c
+++ b/src/mame/drivers/megatech.c
@@ -266,7 +266,7 @@ static void megatech_select_game(running_machine *machine, int gameno)
UINT8* bios_region;
char tempname[20];
- printf("game 0 selected\n");
+ //printf("game 0 selected\n");
cputag_set_input_line(machine, "maincpu", INPUT_LINE_RESET, ASSERT_LINE);
cputag_set_input_line(machine, "genesis_snd_z80", INPUT_LINE_RESET, ASSERT_LINE);
@@ -294,7 +294,7 @@ static void megatech_select_game(running_machine *machine, int gameno)
// knows from the cart pinout
if (bios_region[0x8000]==2)
{
- printf("SMS cart!!, CPU not running\n");
+ //printf("SMS cart!!, CPU not running\n");
mtech_bios.current_game_is_sms = 1;
megatech_set_genz80_as_sms_standard_map(machine, "genesis_snd_z80", MAPPER_STANDARD);
cputag_set_input_line(machine, "genesis_snd_z80", INPUT_LINE_HALT, CLEAR_LINE);
@@ -304,7 +304,7 @@ static void megatech_select_game(running_machine *machine, int gameno)
}
else if (bios_region[0x8000]==1)
{
- printf("Genesis Cart, CPU0 running\n");
+ //printf("Genesis Cart, CPU0 running\n");
mtech_bios.current_game_is_sms = 0;
megatech_set_megadrive_z80_as_megadrive_z80(machine, "genesis_snd_z80");
cputag_set_input_line(machine, "maincpu", INPUT_LINE_RESET, CLEAR_LINE);
@@ -406,7 +406,7 @@ static WRITE8_HANDLER (mt_z80_bank_w)
mtech_bios.mt_bank_bank_pos = 0;
mtech_bios.mt_bank_addr = mtech_bios.mt_bank_partial;
mtech_bios.mt_bank_partial = 0;
- printf("MT z80 bank set to %08x\n", mtech_bios.mt_bank_addr);
+ //printf("MT z80 bank set to %08x\n", mtech_bios.mt_bank_addr);
}
}