Decode in FE

This commit is contained in:
felsabbagh3
2019-09-08 17:24:51 -04:00
parent ac9b06bf7d
commit 5e6804703f
28 changed files with 6806 additions and 6690 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,27 @@
`include "VX_define.v"
`ifndef VX_ICACHE_REQ
`define VX_ICACHE_REQ
interface VX_icache_request_inter ();
wire[31:0] pc_address;
// source-side view
modport snk (
input pc_address
);
// source-side view
modport src (
output pc_address
);
endinterface
`endif

View File

@@ -0,0 +1,29 @@
`include "VX_define.v"
`ifndef VX_ICACHE_RSP
`define VX_ICACHE_RSP
interface VX_icache_response_inter ();
// wire ready;
// wire stall;
wire[31:0] instruction;
// source-side view
modport snk (
input instruction
);
// source-side view
modport src (
output instruction
);
endinterface
`endif