Forum Discussion
Altera_Forum
Honored Contributor
17 years agoI'm guessing
data <= data_out when cs = '1' and oe = '1' and we = '0' else (others => 'Z'); I don't personally speak Verilog but I'm guessing that the gist is: when the boolean expression "cs and oe and not we" is 1, assign data_out to data otherwise tri-state data. I hope that's nough to make sense of the VHDL above anyway.