diff options
Diffstat (limited to 'passes')
| -rw-r--r-- | passes/pmgen/README.md | 2 | ||||
| -rw-r--r-- | passes/pmgen/ice40_wrapcarry.pmg | 4 | ||||
| -rw-r--r-- | passes/pmgen/xilinx_dsp.cc | 1 | 
3 files changed, 6 insertions, 1 deletions
diff --git a/passes/pmgen/README.md b/passes/pmgen/README.md index 2f5b8d0b2..39560839f 100644 --- a/passes/pmgen/README.md +++ b/passes/pmgen/README.md @@ -190,7 +190,7 @@ create matches for different sections of a cell. For example:          select pmux->type == $pmux          slice idx GetSize(port(pmux, \S))          index <SigBit> port(pmux, \S)[idx] === port(eq, \Y) -	set pmux_slice idx +        set pmux_slice idx      endmatch  The first argument to `slice` is the local variable name used to identify the diff --git a/passes/pmgen/ice40_wrapcarry.pmg b/passes/pmgen/ice40_wrapcarry.pmg index 9e64c7467..bb59edb0c 100644 --- a/passes/pmgen/ice40_wrapcarry.pmg +++ b/passes/pmgen/ice40_wrapcarry.pmg @@ -9,3 +9,7 @@ match lut  	index <SigSpec> port(lut, \I1) === port(carry, \I0)  	index <SigSpec> port(lut, \I2) === port(carry, \I1)  endmatch + +code +	accept; +endcode diff --git a/passes/pmgen/xilinx_dsp.cc b/passes/pmgen/xilinx_dsp.cc index 886e01c0f..054e123e4 100644 --- a/passes/pmgen/xilinx_dsp.cc +++ b/passes/pmgen/xilinx_dsp.cc @@ -20,6 +20,7 @@  #include "kernel/yosys.h"  #include "kernel/sigtools.h" +#include <deque>  USING_YOSYS_NAMESPACE  PRIVATE_NAMESPACE_BEGIN  | 
