mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-14 16:11:34 +09:00
Emacs : verilog-mode snippets fix.✡
This commit is contained in:
7
.doom.d/snippets/verilog-mode/always (asynchronous rst) → .doom.d/snippets/verilog-mode/always(async rst)
Normal file → Executable file
7
.doom.d/snippets/verilog-mode/always (asynchronous rst) → .doom.d/snippets/verilog-mode/always(async rst)
Normal file → Executable file
@ -1,10 +1,7 @@
|
|||||||
# -*- mode: snippet -*-
|
# -*- mode: snippet -*-
|
||||||
# name: always (asynchronous rst)
|
# name: always(async rst)
|
||||||
# uuid:
|
# key:
|
||||||
# key: trigger-key
|
|
||||||
# condition: t
|
|
||||||
# --
|
# --
|
||||||
|
|
||||||
always@(posedge clk or posedge rst)
|
always@(posedge clk or posedge rst)
|
||||||
if(rst) begin
|
if(rst) begin
|
||||||
/*AUTORESET*/
|
/*AUTORESET*/
|
||||||
7
.doom.d/snippets/verilog-mode/always (asynchronous rstn) → .doom.d/snippets/verilog-mode/always(async rstn)
Normal file → Executable file
7
.doom.d/snippets/verilog-mode/always (asynchronous rstn) → .doom.d/snippets/verilog-mode/always(async rstn)
Normal file → Executable file
@ -1,10 +1,7 @@
|
|||||||
# -*- mode: snippet -*-
|
# -*- mode: snippet -*-
|
||||||
# name: always (asynchronous rstn)
|
# name: always(async rstn)
|
||||||
# uuid:
|
# key:
|
||||||
# key: trigger-key
|
|
||||||
# condition: t
|
|
||||||
# --
|
# --
|
||||||
|
|
||||||
always@(posedge clk or negedge rstn)
|
always@(posedge clk or negedge rstn)
|
||||||
if(!rstn) begin
|
if(!rstn) begin
|
||||||
/*AUTORESET*/
|
/*AUTORESET*/
|
||||||
7
.doom.d/snippets/verilog-mode/always (synchronous rst) → .doom.d/snippets/verilog-mode/always(sync rst)
Normal file → Executable file
7
.doom.d/snippets/verilog-mode/always (synchronous rst) → .doom.d/snippets/verilog-mode/always(sync rst)
Normal file → Executable file
@ -1,10 +1,7 @@
|
|||||||
# -*- mode: snippet -*-
|
# -*- mode: snippet -*-
|
||||||
# name: always (synchronous rst)
|
# name: always(sync rst)
|
||||||
# uuid:
|
# key:
|
||||||
# key: trigger-key
|
|
||||||
# condition: t
|
|
||||||
# --
|
# --
|
||||||
|
|
||||||
always@(posedge clk)
|
always@(posedge clk)
|
||||||
if(rst) begin
|
if(rst) begin
|
||||||
/*AUTORESET*/
|
/*AUTORESET*/
|
||||||
7
.doom.d/snippets/verilog-mode/always (synchronous rstn) → .doom.d/snippets/verilog-mode/always(sync rstn)
Normal file → Executable file
7
.doom.d/snippets/verilog-mode/always (synchronous rstn) → .doom.d/snippets/verilog-mode/always(sync rstn)
Normal file → Executable file
@ -1,10 +1,7 @@
|
|||||||
# -*- mode: snippet -*-
|
# -*- mode: snippet -*-
|
||||||
# name: always (synchronous rstn)
|
# name: always(sync rstn)
|
||||||
# uuid:
|
# key:
|
||||||
# key: trigger-key
|
|
||||||
# condition: t
|
|
||||||
# --
|
# --
|
||||||
|
|
||||||
always@(posedge clk)
|
always@(posedge clk)
|
||||||
if(!rstn) begin
|
if(!rstn) begin
|
||||||
/*AUTORESET*/
|
/*AUTORESET*/
|
||||||
5
.doom.d/snippets/verilog-mode/module(base)
Normal file → Executable file
5
.doom.d/snippets/verilog-mode/module(base)
Normal file → Executable file
@ -1,10 +1,7 @@
|
|||||||
# -*- mode: snippet -*-
|
# -*- mode: snippet -*-
|
||||||
# name: module(base)
|
# name: module(base)
|
||||||
# uuid:
|
# key:
|
||||||
# key: trigger-key
|
|
||||||
# condition: t
|
|
||||||
# --
|
# --
|
||||||
|
|
||||||
module example
|
module example
|
||||||
#(
|
#(
|
||||||
parameter DIN_LEN = 8
|
parameter DIN_LEN = 8
|
||||||
|
|||||||
Reference in New Issue
Block a user