Files
Imants Pulkstenis 8da9e7da7c Spliting i2s transceiver in to two modules
i2s sender and i2s receiver.
Also add JXADC_controler for logic analizer.
2019-10-20 18:38:10 +03:00

18 lines
442 B
Verilog

// This module outputs signals to JXADC PMOD
// where logic analyzer are conected.
module JXADC_controler (
input ch0,
input ch1,
input ch2,
input ch3,
input ch4,
input ch5,
input ch6,
input ch7,
output [7: 0] JXADC // output for logic analizer
);
assign JXADC = {ch7,ch6,ch5,ch4,ch3,ch2,ch1,ch0};
endmodule