diff options
Diffstat (limited to 'techlibs/gatemate/mul_map.v')
-rw-r--r-- | techlibs/gatemate/mul_map.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/gatemate/mul_map.v b/techlibs/gatemate/mul_map.v index 8ab522815..123a1e631 100644 --- a/techlibs/gatemate/mul_map.v +++ b/techlibs/gatemate/mul_map.v @@ -17,8 +17,8 @@ * */ -`define MAX(a,b) (a > b ? a : b) -`define MIN(a,b) (a < b ? a : b) +`define MAX(a,b) ((a) > (b) ? (a) : (b)) +`define MIN(a,b) ((a) < (b) ? (a) : (b)) (* techmap_celltype = "$mul $__mul" *) module \$__MULMXN (A, B, Y); |