fixed compilation with debugger
This commit is contained in:
parent
9461797886
commit
d69f845cc6
@ -620,15 +620,13 @@ void bx_dbg_lin_memory_access(unsigned cpu, bx_address lin, bx_phy_address phy,
|
||||
dbg_printf("\n");
|
||||
}
|
||||
|
||||
void bx_dbg_phy_memory_access(unsigned cpu, bx_phy_address phy, unsigned len, unsigned rw, Bit8u *data)
|
||||
void bx_dbg_phy_memory_access(unsigned cpu, bx_phy_address phy, unsigned len, unsigned rw, unsigned access, Bit8u *data)
|
||||
{
|
||||
bx_dbg_check_memory_watchpoints(cpu, phy, len, rw);
|
||||
|
||||
if (! BX_CPU(cpu)->trace_mem)
|
||||
return;
|
||||
|
||||
unsigned access = rw >> 4;
|
||||
|
||||
static const char *access_string[] = {
|
||||
"",
|
||||
"PDPTR0",
|
||||
|
@ -303,7 +303,7 @@ void bx_dbg_halt(unsigned cpu);
|
||||
|
||||
// memory trace callbacks from CPU, len=1,2,4 or 8
|
||||
void bx_dbg_lin_memory_access(unsigned cpu, bx_address lin, bx_phy_address phy, unsigned len, unsigned pl, unsigned rw, Bit8u *data);
|
||||
void bx_dbg_phy_memory_access(unsigned cpu, bx_phy_address phy, unsigned len, unsigned rw, Bit8u *data);
|
||||
void bx_dbg_phy_memory_access(unsigned cpu, bx_phy_address phy, unsigned len, unsigned rw, unsigned attr, Bit8u *data);
|
||||
|
||||
// check memory access for watchpoints
|
||||
void bx_dbg_check_memory_watchpoints(unsigned cpu, bx_phy_address phy, unsigned len, unsigned rw);
|
||||
|
Loading…
Reference in New Issue
Block a user