Skip to content

Commit

Permalink
maybe the value is correct and something else is going on?
Browse files Browse the repository at this point in the history
  • Loading branch information
David Haywood committed Dec 26, 2024
1 parent a8ba1e0 commit 242bec1
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/mame/tvgames/xavix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,10 +310,16 @@ void xavix_state::xavix_1mb_extbus_map(address_map &map)
void xavix_state::mainram_w(offs_t offset, uint8_t data)
{
m_mainram[offset] = data;

// trying to debug anpanmdx title screen issue
// if ((offset == 0x3d) && (data == 0x77))
// logerror("%s: writing 0x77 to 0x3d\n", machine().describe_context());
/*
// trying to debug anpanmdx title screen issue
if ((offset == 0x3d) && (data == 0x77))
logerror("%s: writing 0x77 to 0x3d\n", machine().describe_context());
if ((offset == 0x98) && (data == 0x77))
logerror("%s: writing 0x77 to 0x98\n", machine().describe_context());
if ((offset == 0x3f2) && (data == 0x77))
logerror("%s: writing 0x77 to 0x3f2\n", machine().describe_context());
// but the unwanted? value of 0x77 is explicitly set by the code at 1c61c
*/
}


Expand Down

0 comments on commit 242bec1

Please sign in to comment.