Question: Can anyone see why I ' m getting these errors in Quartus Altera and fix it ? CODE: module dual _ port _ SSRAM (
Can anyone see why Im getting these errors in Quartus Altera and fix it
CODE:
module dualportSSRAM
output reg datawidth: odataout odataout
input datawidth: idatain idatain
input $clogdepth: iaddr iaddr
input ien iwr iwr ien iclk
;
parameter datawidth ;
parameter depth ;
reg datawidth: dataRAM :depth;
initial begin
$readmemhmemorytxt dataRAM;
end
always @posedge iclk begin
if iwr && ien
dataRAMiaddr idatain;
else if iwr && ien
dataRAMiaddr idatain;
if ~iwr && ien
odataout dataRAMiaddr;
if ~iwr && ien
odataout dataRAMiaddr;
end
endmodule
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
