framework for later dev

This commit is contained in:
2025-08-14 01:23:23 -04:00
commit 53d5212df8
10 changed files with 256 additions and 0 deletions

11
src/testbench/utils.svh Normal file
View File

@@ -0,0 +1,11 @@
`ifndef __UTILS_SVH__
`define __UTILS_SVH__
`include <params.svh>
`include <packet.svh>
function automatic logic get_bit(input Packet pkt, input int pos);
if (pos <= 0 | pos >=
endfunction // get_bit
`endif