diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-07-10 18:17:09 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-07-10 18:17:09 +0200 |
commit | a72fb85dc2195a4519a8f360bd5f0846ef8d26a4 (patch) | |
tree | e9b810e2d6490bc3b471c22e7bb2194ac95c94b5 /techlibs | |
parent | 771c5fe0009cf2195e12be40b242662380681624 (diff) | |
parent | 307e31a95e96165650798e68fd5bb22809f4127f (diff) | |
download | yosys-a72fb85dc2195a4519a8f360bd5f0846ef8d26a4.tar.gz yosys-a72fb85dc2195a4519a8f360bd5f0846ef8d26a4.tar.bz2 yosys-a72fb85dc2195a4519a8f360bd5f0846ef8d26a4.zip |
Merge branch 'master' of github.com:cliffordwolf/yosys
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/greenpak4/cells_sim.v | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v index be8e66c66..67f00f3a4 100644 --- a/techlibs/greenpak4/cells_sim.v +++ b/techlibs/greenpak4/cells_sim.v @@ -94,6 +94,32 @@ module GP_COUNT14(input CLK, input wire RST, output reg OUT); endmodule +module GP_COUNT8_ADV(input CLK, input RST, output reg OUT, + input UP, input KEEP); + + parameter RESET_MODE = "RISING"; + parameter RESET_VALUE = "ZERO"; + + parameter COUNT_TO = 8'h1; + parameter CLKIN_DIVIDE = 1; + + //more complex hard IP blocks are not supported for simulation yet + +endmodule + +module GP_COUNT14_ADV(input CLK, input RST, output reg OUT, + input UP, input KEEP); + + parameter RESET_MODE = "RISING"; + parameter RESET_VALUE = "ZERO"; + + parameter COUNT_TO = 14'h1; + parameter CLKIN_DIVIDE = 1; + + //more complex hard IP blocks are not supported for simulation yet + +endmodule + module GP_DELAY(input IN, output reg OUT); parameter DELAY_STEPS = 1; |