From 37fe6e4219c8311028a4f7654586efc7ffb0f7dd Mon Sep 17 00:00:00 2001 From: Nick Gasson Date: Mon, 7 Jul 2008 15:49:51 +0100 Subject: [PATCH] Dummy implementation of IVL_LO_BUF* --- tgt-vhdl/scope.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tgt-vhdl/scope.cc b/tgt-vhdl/scope.cc index da356654d..c9f992f08 100644 --- a/tgt-vhdl/scope.cc +++ b/tgt-vhdl/scope.cc @@ -148,6 +148,9 @@ static vhdl_expr *translate_logic(vhdl_scope *scope, ivl_net_logic_t log) return inputs_to_expr(scope, VHDL_BINOP_OR, log); case IVL_LO_XOR: return inputs_to_expr(scope, VHDL_BINOP_XOR, log); + case IVL_LO_BUF: + case IVL_LO_BUFZ: + return nexus_to_expr(scope, ivl_logic_pin(log, 1)); default: error("Don't know how to translate logic type = %d", ivl_logic_type(log));