CPU: Implement break instruction
This commit is contained in:
@ -519,6 +519,12 @@ void Core::ExecuteInstruction(Instruction inst)
|
||||
}
|
||||
break;
|
||||
|
||||
case InstructionFunct::break_:
|
||||
{
|
||||
RaiseException(Exception::BP);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
UnreachableCode();
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user