mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
12 lines
139 B
Plaintext
Executable File
12 lines
139 B
Plaintext
Executable File
# -*- mode: snippet -*-
|
|
# name: always(sync rst)
|
|
# key:
|
|
# --
|
|
always@(posedge clk) begin
|
|
if(rst) begin
|
|
/*AUTORESET*/
|
|
end
|
|
else begin
|
|
end
|
|
end
|