fixed typo caused compilation err

This commit is contained in:
Stanislav Shwartsman 2013-01-18 08:12:36 +00:00
parent eda28b95f4
commit 168bfc6ab1
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ void bxInstrumentation::bx_instr_hwinterrupt(unsigned vector, Bit16u cs, bx_addr
}
}
void bxInstrumentation::bx_instr_lin_access(bx_address lin, bx_phy_adress phy, unsigned len, unsigned rw)
void bxInstrumentation::bx_instr_lin_access(bx_address lin, bx_phy_address phy, unsigned len, unsigned rw)
{
if(!active || !ready) return;

View File

@ -87,7 +87,7 @@ public:
void bx_instr_exception(unsigned vector, unsigned error_code);
void bx_instr_hwinterrupt(unsigned vector, Bit16u cs, bx_address eip);
void bx_instr_lin_access(bx_address lin, bx_phy_adress phy, unsigned len, unsigned rw);
void bx_instr_lin_access(bx_address lin, bx_phy_address phy, unsigned len, unsigned rw);
private:
void branch_taken(bx_address new_eip);