control_loop: remove reg keyword, yosys doesnt like it
This commit is contained in:
parent
644f4142a2
commit
f536a41784
|
@ -49,8 +49,8 @@ module control_loop
|
||||||
output adc_sck,
|
output adc_sck,
|
||||||
|
|
||||||
/* Hacky ad-hoc read-write interface. */
|
/* Hacky ad-hoc read-write interface. */
|
||||||
input reg [`CONTROL_LOOP_CMD_WIDTH-1:0] cmd,
|
input [`CONTROL_LOOP_CMD_WIDTH-1:0] cmd,
|
||||||
input reg [`DATA_WID-1:0] word_in,
|
input [`DATA_WID-1:0] word_in,
|
||||||
output reg [`DATA_WID-1:0] word_out,
|
output reg [`DATA_WID-1:0] word_out,
|
||||||
input start_cmd,
|
input start_cmd,
|
||||||
output reg finish_cmd
|
output reg finish_cmd
|
||||||
|
@ -150,7 +150,7 @@ wire signed [`CONSTS_WID-1:0] adj_val;
|
||||||
wire signed [DAC_DATA_WID-1:0] new_dac_val;
|
wire signed [DAC_DATA_WID-1:0] new_dac_val;
|
||||||
|
|
||||||
reg arm_math = 0;
|
reg arm_math = 0;
|
||||||
reg math_finished = 0;
|
wire math_finished;
|
||||||
control_loop_math #(
|
control_loop_math #(
|
||||||
.CONSTS_WHOLE(CONSTS_WHOLE),
|
.CONSTS_WHOLE(CONSTS_WHOLE),
|
||||||
.CONSTS_FRAC(CONSTS_FRAC),
|
.CONSTS_FRAC(CONSTS_FRAC),
|
||||||
|
|
Loading…
Reference in New Issue