mirror of https://github.com/YosysHQ/yosys.git
Added GP_SYSRESET block
This commit is contained in:
parent
95784437ac
commit
ea9cc03092
|
|
@ -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
|
//more complex hard IP blocks are not supported for simulation yet
|
||||||
|
|
||||||
endmodule
|
endmodule
|
||||||
|
|
||||||
|
module GP_SYSRESET(input RST);
|
||||||
|
parameter RESET_MODE = "RISING";
|
||||||
|
|
||||||
|
//cannot simulate whole system reset
|
||||||
|
|
||||||
|
endmodule
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue