i2s sender and i2s receiver. Also add JXADC_controler for logic analizer.
18 lines
442 B
Verilog
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 |