Files
thorn/src/testbench/utils.svh
2025-08-14 01:23:23 -04:00

12 lines
215 B
Systemverilog

`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