diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-11 20:11:18 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-12 05:54:22 +0100 |
commit | 15a31ff8d87aa496500446c1761c252855489650 (patch) | |
tree | 98b430c9901961c5d1e02d06130434a5505455c5 | |
parent | 5bb4f4273d1d111f079e613945e08850bfb22dfa (diff) | |
download | ghdl-15a31ff8d87aa496500446c1761c252855489650.tar.gz ghdl-15a31ff8d87aa496500446c1761c252855489650.tar.bz2 ghdl-15a31ff8d87aa496500446c1761c252855489650.zip |
ghdl_simul: add commands to use libghdl
-rw-r--r-- | src/ghdldrv/ghdl_simul.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ghdldrv/ghdl_simul.adb b/src/ghdldrv/ghdl_simul.adb index bfd6f20c8..fdef51a0e 100644 --- a/src/ghdldrv/ghdl_simul.adb +++ b/src/ghdldrv/ghdl_simul.adb @@ -18,6 +18,7 @@ with Ghdllocal; with Ghdlprint; with Ghdlxml; with Ghdlsimul; +with Ghdllib; with Ghdlsynth_Maybe; @@ -31,6 +32,7 @@ begin Ghdllocal.Register_Commands; Ghdlprint.Register_Commands; Ghdlxml.Register_Commands; + Ghdllib.Register_Commands; Ghdlmain.Register_Commands; Ghdlmain.Main; end Ghdl_Simul; |