mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-09 04:31:25 +00:00
synth_gatemate: Apply review remarks
This commit is contained in:
parent
240d289fff
commit
cfcc38582a
5 changed files with 86 additions and 141 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue