From 6e248c2b48c3322ee6887eafaa3402788ba53740 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Sat, 5 Nov 2022 12:54:08 -0700 Subject: Convert unimplemented IOT device error into a warning --- isa/decode.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'isa/decode.cpp') diff --git a/isa/decode.cpp b/isa/decode.cpp index df263ad..5484234 100644 --- a/isa/decode.cpp +++ b/isa/decode.cpp @@ -306,8 +306,7 @@ instruction_context decode(std::uint_fast32_t flags, unsigned int pc, unsigned i break; default: inst.ef = [bits](auto &ctx) { - std::cerr << "unimplemented IOT device " << ((bits >> 6) & 07) << ((bits >> 3) & 07) << " suboperation " << (bits & 07) << "\n"; - assert(false); + std::cerr << "warning: unimplemented IOT device " << ((bits >> 6) & 07) << ((bits >> 3) & 07) << " suboperation " << (bits & 07) << "\n"; }; } break; -- cgit v1.2.3