Skip to content

Commit

Permalink
hack: disable stp & txndata
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Dec 12, 2023
1 parent f9101f5 commit 1c9cfc4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ public Hub() {
this.rom,
this.shf,
this.trm,
this.txnData,
// this.txnData,
this.stp,
this.wcp),
this.precompileLimitModules.stream())
Expand Down Expand Up @@ -270,7 +270,7 @@ public List<Module> getModulesToTrace() {
this.romLex,
this.shf,
this.stp,
this.txnData,
// this.txnData,
this.wcp);
}

Expand All @@ -295,7 +295,7 @@ public List<Module> getModulesToCount() {
this.rom,
this.shf,
this.trm,
this.txnData,
// this.txnData,
this.wcp),
this.precompileLimitModules.stream())
.toList();
Expand Down Expand Up @@ -507,7 +507,7 @@ void triggerModules(MessageFrame frame) {
// TODO: this.oob.tracePreOpcode(frame);
}
if (this.pch.signals().stp()) {
this.stp.tracePreOpcode(frame);
// this.stp.tracePreOpcode(frame);
}
if (this.pch.signals().exp()) {
this.modexp.tracePreOpcode(frame);
Expand Down

0 comments on commit 1c9cfc4

Please sign in to comment.