-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkg_main.sv
More file actions
30 lines (25 loc) · 812 Bytes
/
pkg_main.sv
File metadata and controls
30 lines (25 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Requests
`define LOAD_RQ 4'b0000
`define STORE_RQ 4'b0001
// Responds
`define LOAD_RET 4'b0000
`define ST_ACK 4'b0100
`define INT_RET 4'b0111
//Message size
`define MSG_DATA_SIZE_WIDTH 3
`define MSG_DATA_SIZE_0B 3'b000
`define MSG_DATA_SIZE_1B 3'b001
`define MSG_DATA_SIZE_2B 3'b010
`define MSG_DATA_SIZE_4B 3'b011
package pkg_main;
import uvm_pkg::*;
`include"uvm_macros.svh"
import pkg_memory::*;
`include"core-components/c_core_agent_config.svh"
`include"core-components/c_core_driver.svh"
`include"core-components/c_core_request.svh"
`include"core-components/c_core_monitor.svh"
`include"core-components/c_core_agent.svh"
`include"core-components/c_core_env.svh"
`include"core-components/c_core_test.svh"
endpackage