From be2ebd1d883ee91f59ef06887685c21f07f25775 Mon Sep 17 00:00:00 2001 From: Ben Sampson Date: Sat, 25 May 2024 17:32:25 -0700 Subject: [PATCH] fix verilator waiver --- libsv/latches/sr_latch.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsv/latches/sr_latch.sv b/libsv/latches/sr_latch.sv index cd09345..a7fba0f 100644 --- a/libsv/latches/sr_latch.sv +++ b/libsv/latches/sr_latch.sv @@ -4,7 +4,7 @@ module sr_latch ( input logic s, input logic r, - output logic /* verilator lint_off UNOPT */ q /* verilator lint_on UNOPT */, + output logic /* verilator lint_off UNOPTFLAT */ q /* verilator lint_on UNOPTFLAT */, output logic q_n );