prc_modes : process (rawout_en, rawsigs_i, com_i, l1r_i, reset_i)
begin
  if (rawout_en = '1') then
    com_in <= rawsigs_i(RS_ID0_COM);
    l1r_in <= rawsigs_i(RS_IDC_L1);
    reset_in <= rawsigs_i(RS_ID0_R3);
  else
    com_in <= com_i;
    l1r_in <= l1r_i;
    reset_in <= reset_i;
  end if;
end process;