LineFollower-DSB/entities/motorcontrol.sv
2025-02-18 16:24:29 +01:00

11 lines
165 B
Systemverilog

module motorcontrol
(input logic clk,
input logic reset,
input logic direction,
input logic [?:0] count_in,
output logic pwm);
endmodule