CPU: Implement break instruction

This commit is contained in:
Connor McLaughlin
2019-09-14 14:41:41 +10:00
parent 32a36ef1bc
commit f47d44c151
2 changed files with 7 additions and 1 deletions

View File

@ -519,6 +519,12 @@ void Core::ExecuteInstruction(Instruction inst)
}
break;
case InstructionFunct::break_:
{
RaiseException(Exception::BP);
}
break;
default:
UnreachableCode();
break;