SPL causes only on the 11/60 a trap, not on the 11/70

This commit is contained in:
folkert van heusden 2022-03-20 23:24:38 +01:00
parent 6ff0e6a0f3
commit 1fbb3cbd14

View file

@ -1008,10 +1008,10 @@ bool cpu::condition_code_operations(const uint16_t instr)
int level = instr & 7;
setPSW_spl(level);
// trap via vector 010
trap(010);
// // trap via vector 010 only(?) on an 11/60 and not(?) on an 11/70
// trap(010);
fprintf(stderr, "SPL%d, new pc: %06o\n", level, getPC());
D(fprintf(stderr, "SPL%d, new pc: %06o\n", level, getPC());)
return true;
}