fabulous: add support for the In/OutPass4_frame_config_mux BELs

This commit is contained in:
Marcel Jung 2026-03-12 14:49:42 +01:00 committed by myrtle
parent 002c0a1b68
commit 54f160d855
1 changed files with 2 additions and 1 deletions

View File

@ -252,7 +252,8 @@ struct FabFasmWriter
write_logic(ci);
else if (ci->type == id_IO_1_bidirectional_frame_config_pass)
write_io(ci);
else if (ci->type.in(id_InPass4_frame_config, id_OutPass4_frame_config))
else if (ci->type.in(id_InPass4_frame_config, id_OutPass4_frame_config, id_InPass4_frame_config_mux,
id_OutPass4_frame_config_mux))
write_iopass(ci);
else
write_generic_cell(ci);