18 lines
213 B
Verilog
18 lines
213 B
Verilog
`include "../VX_define.vh"
|
|
|
|
`ifndef VX_ICACHE_RSP
|
|
|
|
`define VX_ICACHE_RSP
|
|
|
|
interface VX_icache_response_inter ();
|
|
|
|
// wire ready;
|
|
// wire stall;
|
|
wire[31:0] instruction;
|
|
wire delay;
|
|
|
|
|
|
endinterface
|
|
|
|
|
|
`endif |