1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-01 11:16:16 +00:00

Catch unimplemented.

This commit is contained in:
Thomas Harte
2025-10-21 13:40:23 -04:00
parent ff08c03bc5
commit 4ee8f8564e
2 changed files with 4 additions and 1 deletions

View File

@@ -61,6 +61,9 @@ void Processor<model, Traits>::run_for(const Cycles cycles) {
using InterruptRequest = Storage::Inputs::InterruptRequest;
while(true) switch(Storage::resume_point_) {
default:
__builtin_unreachable();
// MARK: - Fetch/decode.
fetch_decode:
case ResumePoint::FetchDecode: