library/axi_pwm_gen: Replaced blocking assignments in reset.
Lattice tools give error for using blocking assignments at one side and non blocking in the other. Signed-off-by: Villyam <Vilmoscsaba.Jozsa@analog.com>main
parent
5ebd95004d
commit
fd81a821b0
|
@ -88,9 +88,9 @@ module axi_pwm_gen_regmap #(
|
||||||
if (up_rstn == 0) begin
|
if (up_rstn == 0) begin
|
||||||
up_wack <= 'd0;
|
up_wack <= 'd0;
|
||||||
up_scratch <= 'd0;
|
up_scratch <= 'd0;
|
||||||
up_pwm_width = PULSE_WIDTH_G[0:N_PWMS];
|
up_pwm_width <= PULSE_WIDTH_G[0:N_PWMS];
|
||||||
up_pwm_period = PULSE_PERIOD_G[0:N_PWMS];
|
up_pwm_period <= PULSE_PERIOD_G[0:N_PWMS];
|
||||||
up_pwm_offset = PULSE_OFFSET_G[0:N_PWMS];
|
up_pwm_offset <= PULSE_OFFSET_G[0:N_PWMS];
|
||||||
up_load_config <= 1'b0;
|
up_load_config <= 1'b0;
|
||||||
up_reset <= 1'b1;
|
up_reset <= 1'b1;
|
||||||
end else begin
|
end else begin
|
||||||
|
|
Loading…
Reference in New Issue