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