File: 51_vrename_kwd_chg2.vrename

package info (click to toggle)
libverilog-perl 3.482-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,728 kB
  • sloc: perl: 8,685; yacc: 3,387; cpp: 2,266; lex: 1,502; makefile: 8; fortran: 3
file content (26 lines) | stat: -rw-r--r-- 1,154 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# DESCRIPTION: Verilog-Perl: Example Verilog for testing package
# This file ONLY is placed into the Public Domain, for any use,
# without warranty, 2010-2015 by Wilson Snyder.
#
#	Original Signal Name		Name to change to
#	--------------------		-----------------
#
sigren	"foo"				"bar"
sigren	"\esc[ape]_2esc "		"\chg_esc[ape]_2esc "
sigren	"\esc[ape]_2esc_nospace "	"\chg_esc[ape]_2esc_nospace "
sigren	"\esc[ape]_2non "		"chg_escape_2non"
sigren	"\esc[ape]_2non_nospace "	"chg_escape_2non_nospace"
sigren	"\esc[ape]_2ext "		"\chg_escape_2ext "
sigren	"\esc[ape]_2ext_nospace "	"\chg_escape_2ext_nospace "
sigren	"non_2esc"			"\chg_non[ape]_2esc "
sigren	"non_2esc_nospace"		"\chg_non[ape]_2esc_nospace "
sigren	"non_2non"			"chg_non_2non"
sigren	"non_2non_nospace"		"chg_non_2non_nospace"
sigren	"non_2ext"			"\chg_non_2ext "
sigren	"non_2ext_nospace"		"\chg_non_2ext_nospace "
sigren	"ext_2esc"			"\chg_ext[ape]_2esc "
sigren	"ext_2esc_nospace"		"\chg_ext[ape]_2esc_nospace "
sigren	"ext_2non"			"chg_ext_2non"
sigren	"ext_2non_nospace"		"chg_ext_2non_nospace"
sigren	"ext_2ext"			"\chg_ext_2ext "
sigren	"ext_2ext_nospace"		"\chg_ext_2ext_nospace "