Forum Discussion
Altera_Forum
Honored Contributor
15 years agomultiplexing input sources for TSE MAC transmit interface
Hi I have two transmitting modules while only one TSE MAC port. My intention is to multiplex the input to the MAC TX depending on some signal. Seems pretty straight forward but I am having issu...
Altera_Forum
Honored Contributor
15 years agoHi,
I am also doing demux for the RX port and there is no error with that. Doing something like this.. always@(posedge clk) begin if(owner==1'b1) begin rx_data_0 = mac_rx_data_1; . . . tx_ready_0 = mac_tx_ready_1; end else begin rx_data = mac_rx_data_1; . . . tx_ready = mac_tx_ready_1; end end Tried the same structure of always @(posedge clk) with TX but having same errors. Synthesis stops after the error. thanks sawaak