Forum Discussion
Altera_Forum
Honored Contributor
13 years agoMost likely a connection error, but you did not show enough code that might give a hint at what is wrong. How are you driving the bus in your testbench and CPLD? You need to be using a continuous assignment in both places. Either
assign gpbus = wr ? data : 8'z; or assign gpbus = data; And you procedurally assign data to 8'bz when that side is not driving.