From 73710416b4764a13357b4e8602df8dc89684fbd8 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Thu, 11 Feb 2021 13:33:55 -0800 Subject: Add control to whether GenericFrontend splits IO ports. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- frontend/json_frontend.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontend/json_frontend.cc') diff --git a/frontend/json_frontend.cc b/frontend/json_frontend.cc index 136786fc..52f7bfdc 100644 --- a/frontend/json_frontend.cc +++ b/frontend/json_frontend.cc @@ -197,7 +197,7 @@ bool parse_json(std::istream &in, const std::string &filename, Context *ctx) log_error("JSON file '%s' doesn't look like a netlist (doesn't contain \"modules\" key)\n", filename.c_str()); } - GenericFrontend(ctx, JsonFrontendImpl(root))(); + GenericFrontend(ctx, JsonFrontendImpl(root), /*split_io=*/true)(); return true; } -- cgit v1.2.3