mirror of
https://github.com/olofk/serv.git
synced 2025-04-20 11:57:07 -04:00
References: - https://github.com/fusesoc/blinky/pull/68/files (EBAZ4205 blinky) - https://github.com/fusesoc/blinky#ebaz4205-development-board - Existing 'arty_a7_35t' example This PR also cleans up a bunch of whitespace issues (no functional change).
30 lines
555 B
Verilog
30 lines
555 B
Verilog
`default_nettype none
|
|
module servix_ebaz4205
|
|
(
|
|
input wire i_clk,
|
|
output wire q);
|
|
|
|
parameter frequency = 32;
|
|
parameter memfile = "zephyr_hello.hex";
|
|
parameter memsize = 8192;
|
|
parameter PLL = "NONE";
|
|
|
|
wire wb_clk;
|
|
wire wb_rst;
|
|
|
|
servix_ebaz4205_clock_gen
|
|
#(.frequency (frequency))
|
|
clock_gen
|
|
(.i_clk (i_clk),
|
|
.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
|