convert numbers to python format
[sv2nmigen.git] / examples / always_ff.sv
1 module always_comb_test(
2 input clk,
3 input a,
4 output b
5 );
6
7 always_ff @(posedge clk) begin
8 a <= b;
9 end
10
11 endmodule