process (clk)
    variable val : unsigned(7 downto 0);
begin
    if rising_edge(clk) then
        regmap_read(RegControl, val);
        throttle <= val(BIT_THROTTLE);  -- Das 'Drossel'-Signal abfragen
    end if;
end process; 
