From e6a643ea1db47dc5fcf3893a81b3193869edbc38 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Mon, 2 Dec 2019 21:18:37 +0100 Subject: synth: support multiple synthesis. --- src/synth/ghdlsynth.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/synth/ghdlsynth.h') diff --git a/src/synth/ghdlsynth.h b/src/synth/ghdlsynth.h index ae43c2c72..0537ceaf7 100644 --- a/src/synth/ghdlsynth.h +++ b/src/synth/ghdlsynth.h @@ -122,10 +122,11 @@ namespace GhdlSynth { GHDLSYNTH_ADA_WRAPPER_WWD(get_input_net, Net, Instance, Port_Idx); - extern "C" unsigned int ghdlsynth__ghdl_synth(int argc, const char **argv); - inline Module ghdl_synth(int argc, const char **argv) { + extern "C" unsigned int ghdlsynth__ghdl_synth(int init, + int argc, const char **argv); + inline Module ghdl_synth(int init, int argc, const char **argv) { Module res; - res.id = ghdlsynth__ghdl_synth(argc, argv); + res.id = ghdlsynth__ghdl_synth(init, argc, argv); return res; } -- cgit v1.2.3