* Bare skeleton implementation of everything * Testbench builds with Verilator * Test runs
14 lines
218 B
Systemverilog
14 lines
218 B
Systemverilog
// Types
|
|
package tb_types;
|
|
// Agent type
|
|
typedef enum {
|
|
MANAGER,
|
|
SUBORDINATE
|
|
} agent_type_t;
|
|
|
|
typedef enum {
|
|
AXI_READ,
|
|
AXI_WRITE
|
|
} axi_transaction_type_t;
|
|
endpackage
|