futilehdl/doc/examples/clockdiv.fut

13 lines
166 B
Plaintext

module clockdiv_2 (
input wire clk,
input wire rst,
output wire out_clk
) {
proc (clk) {
match (rst) {
0 => out_clk = 0,
1 => out_clk = ~out_clk
}
}
}