mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 08:01:35 +09:00
11 lines
139 B
Plaintext
11 lines
139 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: always(async rstn)
|
|
# key:
|
|
# --
|
|
always@(posedge clk) begin
|
|
if(!rstn) begin
|
|
/*AUTORESET*/
|
|
end
|
|
else begin
|
|
end
|