diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-19 10:11:41 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-19 10:11:41 +0200 |
commit | ad1f40be3d78181debb4a3860951e6f1e204a1c3 (patch) | |
tree | 9a959bee833cd76100d430cb66ff3989afe63b05 /src | |
parent | bcb71129a8e903615d05ccc3d657e345a87f550c (diff) | |
download | ghdl-ad1f40be3d78181debb4a3860951e6f1e204a1c3.tar.gz ghdl-ad1f40be3d78181debb4a3860951e6f1e204a1c3.tar.bz2 ghdl-ad1f40be3d78181debb4a3860951e6f1e204a1c3.zip |
ghdlsynth.h: add functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/ghdlsynth.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/synth/ghdlsynth.h b/src/synth/ghdlsynth.h index 9b8a55221..ae43c2c72 100644 --- a/src/synth/ghdlsynth.h +++ b/src/synth/ghdlsynth.h @@ -105,6 +105,10 @@ namespace GhdlSynth { GHDLSYNTH_ADA_WRAPPER_WWD(get_input, Input, Instance, Port_Idx); GHDLSYNTH_ADA_WRAPPER_WWD(get_output, Net, Instance, Port_Idx); GHDLSYNTH_ADA_WRAPPER_WW(get_driver, Net, Input); + GHDLSYNTH_ADA_WRAPPER_WW(get_input_parent, Instance, Input); + + GHDLSYNTH_ADA_WRAPPER_WW(get_first_sink, Input, Net); + GHDLSYNTH_ADA_WRAPPER_WW(get_next_sink, Input, Input); // Utils #undef GHDLSYNTH_ADA_PREFIX |