mirror of
https://github.com/UzixLS/ncomputing-l230.git
synced 2025-07-19 07:11:22 +03:00
add cpld firmware template
This commit is contained in:
28
cpld/top.v
Normal file
28
cpld/top.v
Normal file
@ -0,0 +1,28 @@
|
||||
module top(
|
||||
input clk,
|
||||
|
||||
output flash_si,
|
||||
output flash_reset,
|
||||
output flash_wp,
|
||||
output flash_cs,
|
||||
output flash_sck,
|
||||
input flash_so,
|
||||
|
||||
output cy_dclk,
|
||||
output cy_data0,
|
||||
input cy_nconfig,
|
||||
input cy_conf_done,
|
||||
|
||||
inout [12:0] cy
|
||||
);
|
||||
|
||||
assign flash_si = 0;
|
||||
assign flash_reset = 0;
|
||||
assign flash_wp = 0;
|
||||
assign flash_cs = 1'b1;
|
||||
assign flash_sck = 0;
|
||||
|
||||
assign cy_dclk = 0;
|
||||
assign cy_data0 = 0;
|
||||
|
||||
endmodule
|
Reference in New Issue
Block a user