TRAP logging
This commit is contained in:
parent
69118435c4
commit
48abb8509f
1 changed files with 1 additions and 1 deletions
2
cpu.cpp
2
cpu.cpp
|
@ -1599,7 +1599,7 @@ void cpu::schedule_trap(const uint16_t vector)
|
|||
// 'is_interrupt' is not correct naming; it is true for mmu faults and interrupts
|
||||
void cpu::trap(uint16_t vector, const int new_ipl, const bool is_interrupt)
|
||||
{
|
||||
DOLOG(debug, true, "*** CPU::TRAP, MMR0: %06o, MMR2: %06o ***", b->getMMR0(), b->getMMR2());
|
||||
DOLOG(debug, true, "*** CPU::TRAP %o, new-ipl: %d, is-interrupt: %d ***", vector, new_ipl, is_interrupt);
|
||||
|
||||
int processing_trap_depth = 0;
|
||||
uint16_t before_psw = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue