From c03fc9f45df59e35ba9fba8bcf9e933fbb1074b9 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Sun, 24 Jan 2016 05:14:35 +0100 Subject: simul: fix various issues. --- src/ghdldrv/ghdlsimul.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ghdldrv/ghdlsimul.adb') diff --git a/src/ghdldrv/ghdlsimul.adb b/src/ghdldrv/ghdlsimul.adb index 89d9f27..ff64fcf 100644 --- a/src/ghdldrv/ghdlsimul.adb +++ b/src/ghdldrv/ghdlsimul.adb @@ -180,7 +180,7 @@ package body Ghdlsimul is function Decode_Option (Option : String) return Boolean is begin - if Option = "--debug" then + if Option = "--debug" or Option = "-g" then Simulation.Flag_Debugger := True; else return False; -- cgit