mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
14 lines
176 B
Plaintext
14 lines
176 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: always (synchronous rst)
|
|
# uuid:
|
|
# key: trigger-key
|
|
# condition: t
|
|
# --
|
|
|
|
always@(posedge clk)
|
|
if(rst) begin
|
|
/*AUTORESET*/
|
|
end
|
|
else begin
|
|
end
|
|
end |