From 706631225e9ef0d2954c4bef51aaa2817e0f5e86 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 5 Apr 2015 09:45:14 +0200 Subject: Added $_MUX4_, $_MUX8_, and $_MUX16_ cell types --- kernel/rtlil.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'kernel/rtlil.cc') diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index adf89a245..6de5846f9 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -970,6 +970,10 @@ namespace { if (cell->type == "$_AOI4_") { check_gate("ABCDY"); return; } if (cell->type == "$_OAI4_") { check_gate("ABCDY"); return; } + if (cell->type == "$_MUX4_") { check_gate("ABCDSTY"); return; } + if (cell->type == "$_MUX8_") { check_gate("ABCDEFGHSTUY"); return; } + if (cell->type == "$_MUX16_") { check_gate("ABCDEFGHIJKLMNOPSTUVY"); return; } + if (cell->type == "$_SR_NN_") { check_gate("SRQ"); return; } if (cell->type == "$_SR_NP_") { check_gate("SRQ"); return; } if (cell->type == "$_SR_PN_") { check_gate("SRQ"); return; } -- cgit v1.2.3