summaryrefslogtreecommitdiff
path: root/isa/decode.cpp
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-11-11 16:29:22 -0800
committerJulian Blake Kongslie2022-11-11 16:29:22 -0800
commita2c9de8fcc63a954b6486846b80c402a85d956ca (patch)
treedcfffddafa0edff1d63bb4cfca5609a556ae70a6 /isa/decode.cpp
parentIgnore pipetrace files (diff)
downloadbiggolf-a2c9de8fcc63a954b6486846b80c402a85d956ca.tar.xz
Multi-word fetch bundles and icache with realistic dram latency
Diffstat (limited to '')
-rw-r--r--isa/decode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/isa/decode.cpp b/isa/decode.cpp
index 2151e2b..061fe5c 100644
--- a/isa/decode.cpp
+++ b/isa/decode.cpp
@@ -415,7 +415,7 @@ instruction_context decode(std::uint_fast32_t flags, unsigned int pc, unsigned i
415 default: 415 default:
416 inst.df = "IOT %b"; 416 inst.df = "IOT %b";
417 inst.ef = [bits](auto &ctx) { 417 inst.ef = [bits](auto &ctx) {
418 std::cerr << "warning: unimplemented IOT device " << ((bits >> 6) & 07) << ((bits >> 3) & 07) << " suboperation " << (bits & 07) << "\n"; 418 //std::cerr << "warning: unimplemented IOT device " << ((bits >> 6) & 07) << ((bits >> 3) & 07) << " suboperation " << (bits & 07) << "\n";
419 }; 419 };
420 } 420 }
421 break; 421 break;