Skip to content

Commit dbd5205

Browse files
committed
Fix wrong input/output in MEM
1 parent 5503f11 commit dbd5205

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sec_8/MEM.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ module MEM_Stage
2121
input rst;
2222
input read;
2323
input write;
24-
input SRAMWEn;
25-
input SRAMOE;
24+
output SRAMWEn;
25+
output SRAMOE;
2626
input [31:0] aluResult;
2727
input [31:0] writedata;
28-
input [17:0] SRAMaddress;
28+
output [17:0] SRAMaddress;
2929
output SRAM_NOT_READY;
3030
output [31:0] readdata;
3131
output [31:0] wbData;

0 commit comments

Comments
 (0)