kv-be / pretty-vhdl

MIT License
0 stars 0 forks source link

bad alignment on proc with arguments on first line #26

Closed kv-be closed 6 months ago

kv-be commented 6 months ago

architecture een of twee begin -- Returns a variable containing all the test inputs in a custom structure procedure init_test_inputs(test_id : inout integer; test_inputs : inout t_test_inputs; tdi_type, tdi_spectral_agglom : in std_logic_vector(1 downto 0); dual_readout, hs_plus_pan_mode : in std_logic; hs_nol, pan_nol : in std_logic_vector(11 downto 0); no_accum, no_accum_pan : in integer; hs_off, pan_off : in boolean) is begin test_inputs.tdi_type := tdi_type; test_inputs.dual_readout := dual_readout; test_inputs.hs_plus_pan_mode := hs_plus_pan_mode; test_inputs.tdi_spectral_agglom := tdi_spectral_agglom; test_inputs.hs_nol := hs_nol; test_inputs.pan_nol := pan_nol; test_inputs.hs_off := hs_off; test_inputs.pan_off := pan_off; test_inputs.no_accum := no_accum; test_inputs.no_accum_pan := no_accum_pan; test_inputs.test_title := get_test_title(test_inputs, test_id); test_id := test_id + 1; end procedure;

kv-be commented 6 months ago

solved