summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nandgame/hack_alu.sv4
1 files changed, 3 insertions, 1 deletions
diff --git a/nandgame/hack_alu.sv b/nandgame/hack_alu.sv
index 6d66a08..93d7476 100644
--- a/nandgame/hack_alu.sv
+++ b/nandgame/hack_alu.sv
@@ -37,7 +37,9 @@ module alu #(
output logic negate_out
);
-logic [(DATA_WIDTH-1):0] x1, x2, y1, y2, res1, res2 /* verilator public */;
+/* verilator public_on */;
+logic [(DATA_WIDTH-1):0] x1, x2, y1, y2, res1, res2;
+/* verilator public_off */;
// logic [(DATA_WIDTH-1):0] int_result_arith;
// logic [(DATA_WIDTH-1):0] int_result_logic;