newStep.v

This commit is contained in:
2025-11-27 04:28:54 +03:00
parent a84b8fcfde
commit 6e38a6c1af
85 changed files with 25646 additions and 6801 deletions

22
RTL/PROCESSOR/utils.v Normal file
View File

@@ -0,0 +1,22 @@
/********************* Utilities, macros for debugging *************/
`ifdef VERBOSE
`define verbose(command) command
`else
`define verbose(command)
`endif
`ifdef BENCH
`define BENCH_OR_LINT
`ifdef QUIET
`define bench(command)
`else
`define bench(command) command
`endif
`else
`define bench(command)
`endif
`ifdef verilator
`define BENCH_OR_LINT
`endif