mirror of https://github.com/YosysHQ/yosys.git
Added RESET_TO_MAX parameter to $__COUNT_ cell. Cannot yet be extracted.
This commit is contained in:
parent
0484ad666d
commit
122532b7e1
|
@ -493,6 +493,7 @@ void counter_worker(
|
|||
|
||||
//Hook up hard-wired ports (for now up/down are not supported), default to no parallel output
|
||||
cell->setParam("\\HAS_POUT", RTLIL::Const(0));
|
||||
cell->setParam("\\RESET_TO_MAX", RTLIL::Const(0));
|
||||
cell->setParam("\\DIRECTION", RTLIL::Const("DOWN"));
|
||||
cell->setPort("\\CE", RTLIL::Const(1));
|
||||
cell->setPort("\\UP", RTLIL::Const(0));
|
||||
|
|
|
@ -9,6 +9,7 @@ module \$__COUNT_ (CE, CLK, OUT, POUT, RST, UP);
|
|||
|
||||
parameter COUNT_TO = 1;
|
||||
parameter RESET_MODE = "RISING";
|
||||
parameter RESET_TO_MAX = "1";
|
||||
parameter HAS_POUT = 0;
|
||||
parameter HAS_CE = 0;
|
||||
parameter WIDTH = 8;
|
||||
|
|
|
@ -156,6 +156,7 @@ module \$__COUNT_ (CE, CLK, OUT, POUT, RST, UP);
|
|||
|
||||
parameter COUNT_TO = 1;
|
||||
parameter RESET_MODE = "RISING";
|
||||
parameter RESET_TO_MAX = 0;
|
||||
parameter HAS_POUT = 0;
|
||||
parameter HAS_CE = 0;
|
||||
parameter WIDTH = 8;
|
||||
|
@ -196,7 +197,7 @@ module \$__COUNT_ (CE, CLK, OUT, POUT, RST, UP);
|
|||
GP_COUNT8_ADV #(
|
||||
.COUNT_TO(COUNT_TO),
|
||||
.RESET_MODE(RESET_MODE),
|
||||
.RESET_VALUE("COUNT_TO"),
|
||||
.RESET_VALUE(RESET_TO_MAX ? "COUNT_TO" : "ZERO"),
|
||||
.CLKIN_DIVIDE(1)
|
||||
) _TECHMAP_REPLACE_ (
|
||||
.CLK(CLK),
|
||||
|
@ -230,7 +231,7 @@ module \$__COUNT_ (CE, CLK, OUT, POUT, RST, UP);
|
|||
);
|
||||
GP_COUNT14_ADV #(
|
||||
.COUNT_TO(COUNT_TO),
|
||||
.RESET_MODE(RESET_MODE),
|
||||
.RESET_MODE(RESET_TO_MAX ? "COUNT_TO" : "ZERO"),
|
||||
.RESET_VALUE("COUNT_TO"),
|
||||
.CLKIN_DIVIDE(1)
|
||||
) _TECHMAP_REPLACE_ (
|
||||
|
|
Loading…
Reference in New Issue