This commit is contained in:
jose.rodriguezlabra
2019-04-12 00:02:54 -04:00
parent ddf47c7eee
commit bf57055518
34 changed files with 569 additions and 994 deletions

View File

@@ -1,7 +1,5 @@
`timescale 1ns / 1ps
module EMModule(
input wire reset, clk,
input wire [50:0] PipIn,

View File

@@ -56,3 +56,26 @@ module WMUdule(
.switch(link)
);
endmodule
//module WMUdule_tb();
// reg [61:0] PipIn;
// wire [8:0] RFIn,FUAddr;
// wire [1:0] instr;
// wire fetchBranch, RegEn;
// WMUdule WMUdule_0(
// .PipIn(PipIn),
// .RFIn(RFIn),
// .FUAddr(FUAddr),
// .instr(instr),
// .fetchBranch(fetchBranch),
// .RegEn(RegEn)
// );
// initial begin
// PipIn = 1;
// #5
// $finish;
// end
//endmodule