Fixed a memory corruption bug

This commit is contained in:
(Tim) Efthimis Kritikos 2023-05-10 08:35:14 +01:00
parent 7e612bb701
commit e4ef199b83

View File

@ -38,10 +38,12 @@ assign data[7:0] = !address[0:0] & !rd & !cs ? memory[address[16:1]][15:8] : 8'
assign data[15:8] = !BHE & !rd & !cs ? memory[address[16:1]][7:0] : 8'hz;
always @(negedge wr) begin
if(BHE==0)
memory[address[16:1]][7:0]<=data[15:8];
if(address[0]==0)
memory[address[16:1]][15:8]<=data[7:0];
if( cs == 0 ) begin
if(BHE==0)
memory[address[16:1]][7:0]<=data[15:8];
if(address[0]==0)
memory[address[16:1]][15:8]<=data[7:0];
end
end
endmodule