mirror of
https://github.com/olofk/serv.git
synced 2025-04-22 21:07:12 -04:00
31 lines
558 B
Verilog
31 lines
558 B
Verilog
`default_nettype none
|
|
module servive
|
|
(
|
|
input wire i_clk,
|
|
input wire i_rst_n,
|
|
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;
|
|
|
|
servive_clock_gen clock_gen
|
|
(.i_clk (i_clk),
|
|
.i_rst (!i_rst_n),
|
|
.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
|