kv-be / pretty-vhdl

MIT License
0 stars 0 forks source link

record alignment goes bad #24

Closed kv-be closed 5 months ago

kv-be commented 5 months ago

architecture Behavioral of tdi_line_getter_tb is --autoformat_off package tdi_pkg is new work.tdi_pkg generic map(G_SENSOR => G_SENSOR); use tdi_pkg.all; --autoformat_on

-- TYPE --

type t_test_inputs is record test_title : string(1 to 255); nol : integer; start_slot : integer; start_line : integer; new_line_delay : integer; end record t_test_inputs;

type t_test_cases is array (natural range <>) of t_test_inputs;

kv-be commented 5 months ago

solved