From c9970ff8229aa7ad6db14977509ad031e88f927c Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sun, 1 Sep 2024 21:01:07 -0400 Subject: [PATCH] Tests: Fix --verbose broken display --- test_regress/t/t_func_io_order.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_func_io_order.v b/test_regress/t/t_func_io_order.v index 4c03675b0..c7b90d5c5 100644 --- a/test_regress/t/t_func_io_order.v +++ b/test_regress/t/t_func_io_order.v @@ -31,7 +31,7 @@ module t(/*AUTOARG*/ // Test loop always @ (posedge clk) begin `ifdef TEST_VERBOSE - $write("[%0t] cyc==%0d crc=%x result=%x\n", $time, cyc, crc); + $write("[%0t] cyc==%0d crc=%x\n", $time, cyc, crc); `endif cyc <= cyc + 1; crc <= {crc[62:0], crc[63] ^ crc[2] ^ crc[0]};