mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-19 20:33:39 +00:00
Merge pull request #141 from azonenberg/master
Add Greenpak4 SYSRESET block support
This commit is contained in:
commit
d4472ae945
1 changed files with 9 additions and 0 deletions
|
@ -104,3 +104,12 @@ module GP_COUNT14(input CLK, input wire RST, output reg OUT);
|
||||||
//more complex hard IP blocks are not supported for simulation yet
|
//more complex hard IP blocks are not supported for simulation yet
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
//keep constraint needed to prevent optimization since we have no outputs
|
||||||
|
(* keep *)
|
||||||
|
module GP_SYSRESET(input RST);
|
||||||
|
parameter RESET_MODE = "RISING";
|
||||||
|
|
||||||
|
//cannot simulate whole system reset
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue