bldc-driver/rtl/bldc.v

14 lines
142 B
Verilog

module bldc (
input clk,
output if_int
);
reg tmp = 0;
assign if_int = tmp;
always @(posedge clk) begin
tmp <= ~tmp;
end
endmodule