aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/greenpak4
diff options
context:
space:
mode:
authorAndrew Zonenberg <azonenberg@drawersteak.com>2016-03-28 22:49:46 -0700
committerAndrew Zonenberg <azonenberg@drawersteak.com>2016-03-28 22:49:46 -0700
commitea9cc0309245c8d1af5d34b836238f197d34e332 (patch)
tree9a7de10e1b5337bbbbb87bfdc350709952005c11 /techlibs/greenpak4
parent95784437ac237be981d0cf573386ba22f28f9624 (diff)
downloadyosys-ea9cc0309245c8d1af5d34b836238f197d34e332.tar.gz
yosys-ea9cc0309245c8d1af5d34b836238f197d34e332.tar.bz2
yosys-ea9cc0309245c8d1af5d34b836238f197d34e332.zip
Added GP_SYSRESET block
Diffstat (limited to 'techlibs/greenpak4')
-rw-r--r--techlibs/greenpak4/cells_sim.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/techlibs/greenpak4/cells_sim.v b/techlibs/greenpak4/cells_sim.v
index 6b5100f75..e22bb80cd 100644
--- a/techlibs/greenpak4/cells_sim.v
+++ b/techlibs/greenpak4/cells_sim.v
@@ -104,3 +104,10 @@ module GP_COUNT14(input CLK, input wire RST, output reg OUT);
//more complex hard IP blocks are not supported for simulation yet
endmodule
+
+module GP_SYSRESET(input RST);
+ parameter RESET_MODE = "RISING";
+
+ //cannot simulate whole system reset
+
+endmodule