aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-expands.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-27 21:06:08 +0100
committerTristan Gingold <tgingold@free.fr>2019-10-27 21:06:08 +0100
commit497e1e575201f5d3ff68cbd4dc4c0ab9003edf00 (patch)
tree64a498d78eb6c4d91288c8f73214c77d92422138 /src/synth/netlists-expands.ads
parent21732824cfea2164654635beb5fb28ebd6b37c35 (diff)
downloadghdl-497e1e575201f5d3ff68cbd4dc4c0ab9003edf00.tar.gz
ghdl-497e1e575201f5d3ff68cbd4dc4c0ab9003edf00.tar.bz2
ghdl-497e1e575201f5d3ff68cbd4dc4c0ab9003edf00.zip
netlists: add code to expand dyn_extract gates (WIP).
Diffstat (limited to 'src/synth/netlists-expands.ads')
-rw-r--r--src/synth/netlists-expands.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/synth/netlists-expands.ads b/src/synth/netlists-expands.ads
new file mode 100644
index 000000000..31dc2b49a
--- /dev/null
+++ b/src/synth/netlists-expands.ads
@@ -0,0 +1,25 @@
+-- Expand dyn gates.
+-- Copyright (C) 2019 Tristan Gingold
+--
+-- This file is part of GHDL.
+--
+-- This program is free software; you can redistribute it and/or modify
+-- it under the terms of the GNU General Public License as published by
+-- the Free Software Foundation; either version 2 of the License, or
+-- (at your option) any later version.
+--
+-- This program is distributed in the hope that it will be useful,
+-- but WITHOUT ANY WARRANTY; without even the implied warranty of
+-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+-- GNU General Public License for more details.
+--
+-- You should have received a copy of the GNU General Public License
+-- along with this program; if not, write to the Free Software
+-- Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
+-- MA 02110-1301, USA.
+
+with Netlists.Builders; use Netlists.Builders;
+
+package Netlists.Expands is
+ procedure Expand_Gates (Ctxt : Context_Acc; M : Module);
+end Netlists.Expands;