1
0
mirror of https://github.com/olofk/serv.git synced 2026-04-18 08:06:05 +00:00

Add cyc1000 target

This commit is contained in:
Olof Kindgren
2019-10-21 15:24:33 +02:00
parent e39b4770fd
commit fca1527dd7
5 changed files with 121 additions and 0 deletions

31
servant/servclone10.v Normal file
View File

@@ -0,0 +1,31 @@
`default_nettype none
module servclone10
(
input wire i_clk,
input wire i_rst,
output wire q,
output wire uart_txd);
parameter memfile = "zephyr_hello.hex";
parameter memsize = 8192;
wire wb_clk;
wire wb_rst;
assign uart_txd = q;
servclone10_clock_gen clock_gen
(.i_clk (i_clk),
.i_rst (i_rst),
.o_clk (wb_clk),
.o_rst (wb_rst));
servant
#(.memfile (memfile),
.memsize (memsize))
servant
(.wb_clk (wb_clk),
.wb_rst (wb_rst),
.q (q));
endmodule