Spliting i2s transceiver in to two modules
i2s sender and i2s receiver. Also add JXADC_controler for logic analizer.
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user