diff options
Diffstat (limited to 'src/synth/synth-context.ads')
-rw-r--r-- | src/synth/synth-context.ads | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/synth/synth-context.ads b/src/synth/synth-context.ads index ca15a6c66..6196257b8 100644 --- a/src/synth/synth-context.ads +++ b/src/synth/synth-context.ads @@ -80,12 +80,6 @@ package Synth.Context is function Get_Instance_Module (Inst : Synth_Instance_Acc) return Module; pragma Inline (Get_Instance_Module); - -- Each base instance creates bit0 and bit1, which are used for control - -- flow. - function Get_Inst_Bit0 (Inst : Synth_Instance_Acc) return Net; - function Get_Inst_Bit1 (Inst : Synth_Instance_Acc) return Net; - pragma Inline (Get_Inst_Bit0, Get_Inst_Bit1); - -- Start the definition of module M (using INST). procedure Set_Instance_Module (Inst : Synth_Instance_Acc; M : Module); @@ -172,8 +166,6 @@ private Top_Module : Module; Cur_Module : Module; - Bit0 : Net; - Bit1 : Net; end record; type Base_Instance_Acc is access Base_Instance_Type; |