aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-16 13:52:43 -0700
committerGitHub <noreply@github.com>2019-07-16 13:52:43 -0700
commitf8e470c1d1178680034a28a9f28b161acf667701 (patch)
tree56df7f3af384b991d1271f7d53b80ee5dd0f0fd4 /techlibs
parent5939b5d636f80d4f9345f5b8d0247332d533b68c (diff)
parent7a58ee78dc8bd2c257498dc947081a1bba7bb54f (diff)
downloadyosys-f8e470c1d1178680034a28a9f28b161acf667701.tar.gz
yosys-f8e470c1d1178680034a28a9f28b161acf667701.tar.bz2
yosys-f8e470c1d1178680034a28a9f28b161acf667701.zip
Merge pull request #1202 from YosysHQ/cmp2lut_lut6
cmp2lut transformation to support >32 bit LUT masks
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/common/cmp2lut.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/common/cmp2lut.v b/techlibs/common/cmp2lut.v
index 8aa1eb957..0d0757767 100644
--- a/techlibs/common/cmp2lut.v
+++ b/techlibs/common/cmp2lut.v
@@ -27,7 +27,7 @@ parameter _TECHMAP_CONSTVAL_A_ = 0;
parameter _TECHMAP_CONSTMSK_B_ = 0;
parameter _TECHMAP_CONSTVAL_B_ = 0;
-function automatic integer gen_lut;
+function automatic [(1 << `LUT_WIDTH)-1:0] gen_lut;
input integer width;
input integer operation;
input integer swap;