diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-17 06:35:04 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-17 06:35:04 +0200 |
commit | a87efba0ca0cc55cc26a28371eb1963a2e720498 (patch) | |
tree | a0d18b5bb7b1b3304599ddd35a189ea1c5f138a4 /src/ghdldrv | |
parent | cb024436717e81efcb6cefb7f1c16ecb86e21afa (diff) | |
download | ghdl-a87efba0ca0cc55cc26a28371eb1963a2e720498.tar.gz ghdl-a87efba0ca0cc55cc26a28371eb1963a2e720498.tar.bz2 ghdl-a87efba0ca0cc55cc26a28371eb1963a2e720498.zip |
synth: add netlists-memories to extract memories. Still WIP.
Diffstat (limited to 'src/ghdldrv')
-rw-r--r-- | src/ghdldrv/ghdlsynth.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ghdldrv/ghdlsynth.adb b/src/ghdldrv/ghdlsynth.adb index 6fa315ed6..4c6ef996f 100644 --- a/src/ghdldrv/ghdlsynth.adb +++ b/src/ghdldrv/ghdlsynth.adb @@ -108,6 +108,9 @@ package body Ghdlsynth is elsif Option = "-dc" then Flag_Debug_Nocleanup := True; Res := Option_Ok; + elsif Option = "-dm" then + Flag_Debug_Nomemory := True; + Res := Option_Ok; else Decode_Option (Command_Lib (Cmd), Option, Arg, Res); end if; |