From f0cc58df7795ea3925bd1142f69214fdfe54dba7 Mon Sep 17 00:00:00 2001 From: uvok Date: Thu, 15 Jan 2026 17:44:53 +0100 Subject: hack: Fix verilator annotation --- nandgame/hack_alu.sv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- cgit v1.2.3