mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-23 06:19:16 +01:00
16 lines
230 B
Systemverilog
16 lines
230 B
Systemverilog
interface if_cpu_bus_out ();
|
|
|
|
logic req;
|
|
logic [3:0] wstrb;
|
|
logic [31:0] address;
|
|
logic [31:0] wdata;
|
|
|
|
endinterface
|
|
|
|
interface if_cpu_bus_in ();
|
|
|
|
logic ack;
|
|
logic [31:0] rdata;
|
|
|
|
endinterface
|