Spliting i2s transceiver in to two modules

i2s sender and i2s receiver.
Also add JXADC_controler for logic analizer.
This commit is contained in:
Imants Pulkstenis
2019-10-20 18:38:10 +03:00
parent 31f01e93b3
commit 8da9e7da7c
7 changed files with 327 additions and 62 deletions
+18
View File
@@ -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