aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/synth/netlists-disp_vhdl.adb3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb
index 847deab34..e99974431 100644
--- a/src/synth/netlists-disp_vhdl.adb
+++ b/src/synth/netlists-disp_vhdl.adb
@@ -865,7 +865,8 @@ package body Netlists.Disp_Vhdl is
" end if;" & NL &
" end process;" & NL, Inst);
when Id_Mux2 =>
- Disp_Template (" \o0 <= \i1 when \i0 = '0' else \i2;" & NL, Inst);
+ Disp_Template
+ (" \o0 <= \i1 when \fi0 = '0' else \i2;" & NL, Inst);
when Id_Mux4 =>
Disp_Template (" with \i0 select \o0 <=" & NL &
" \i1 when ""00""," & NL &