Forum Discussion
Altera_Forum
Honored Contributor
15 years agoGive this a try:
Remove the whole process, and replace it with the following:data_in <= data_bus;
data_bus <= data_out when oe='1' else (others => 'Z');
This the way I usually describe tristateable signals. Good luck! Ben