diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kate/data/verilog.xml | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/data/verilog.xml')
-rw-r--r-- | kate/data/verilog.xml | 227 |
1 files changed, 227 insertions, 0 deletions
diff --git a/kate/data/verilog.xml b/kate/data/verilog.xml new file mode 100644 index 000000000..c7795c1a0 --- /dev/null +++ b/kate/data/verilog.xml @@ -0,0 +1,227 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE language SYSTEM "language.dtd"> +<language name="Verilog" version="1.07" kateversion="2.4" section="Hardware" extensions="*.v;*.V;*.vl" mimetype="text/x-verilog-src" author="Yevgen Voronenko (ysv22@drexel.edu)" license=""> + <highlighting> + <list name="keywords"> + <item> module </item> + <item> macromodule </item> + <item> endmodule </item> + <item> task </item> + <item> endtask </item> + <item> function </item> + <item> endfunction </item> + <item> table </item> + <item> endtable </item> + <item> specify </item> + <item> specparam </item> + <item> endspecify </item> + <item> case </item> + <item> casex </item> + <item> casez </item> + <item> endcase </item> + <item> fork </item> + <item> join </item> + + <item> defparam </item> + <item> default </item> + <item> begin </item> + <item> end </item> + <item> if </item> + <item> ifnone </item> + <item> else </item> + <item> forever </item> + <item> while </item> + <item> for </item> + <item> wait </item> + <item> repeat </item> + <item> disable </item> + + <item> assign </item> + <item> deassign </item> + <item> force </item> + <item> release </item> + + <item> always </item> + <item> initial </item> + <item> edge </item> + <item> posedge </item> + <item> negedge </item> + </list> + + <list name="strength"> + <!-- drive strength supply0/supply1 omitted, its in types.. --> + <item> strong0 </item> + <item> strong1 </item> + <item> pull0 </item> + <item> pull1 </item> + <item> weak0 </item> + <item> weak1 </item> + <item> highz0 </item> + <item> highz1 </item> + <!-- charge strength --> + <item> small </item> + <item> medium </item> + <item> large </item> + </list> + + <list name="gates"> + <item> pullup </item> + <item> pulldown </item> + <item> cmos </item> + <item> rcmos </item> + <item> nmos </item> + <item> pmos </item> + <item> rnmos </item> + <item> rpmos </item> + <item> and </item> + <item> nand </item> + <item> or </item> + <item> nor </item> + <item> xor </item> + <item> xnor </item> + <item> not </item> + <item> buf </item> + <item> tran </item> + <item> rtran </item> + <item> tranif0 </item> + <item> tranif1 </item> + <item> rtranif0 </item> + <item> rtranif1 </item> + <item> bufif0 </item> + <item> bufif1 </item> + <item> notif0 </item> + <item> notif1 </item> + </list> + + <list name="types"> + <!-- port direction --> + <item> input </item> + <item> output </item> + <item> inout </item> + <!-- net type --> + <item> wire </item> + <item> tri </item> + <item> tri0 </item> + <item> tri1 </item> + <item> wand </item> + <item> wor </item> + <item> triand </item> + <item> trior </item> + <item> supply0 </item> + <item> supply1 </item> + <!-- reg/variable --> + <item> reg </item> + <item> integer </item> + <item> real </item> + <item> realtime </item> + <item> time </item> + <!-- modifier --> + <item> vectored </item> + <item> scalared </item> + <item> trireg </item> + <!-- other --> + <item> parameter </item> + <item> event </item> + </list> + + <contexts> + <context attribute="Normal Text" lineEndContext="#stay" name="Normal"> + <RegExpr attribute="Keyword" context="Block name" String="begin\ *:"/> + <keyword attribute="Keyword" context="#stay" String="keywords" /> + <keyword attribute="Data Type" context="#stay" String="types" /> + <keyword attribute="Drive/charge strength" context="#stay" String="strength" /> + <keyword attribute="Gate instantiation" context="#stay" String="gates" /> + + <RegExpr attribute="Normal Text" context="#stay" String="[a-zA-Z]+[\w$]*"/> + <RegExpr attribute="Normal Text" context="#stay" String="\\[^ ]+ "/> + + <RegExpr attribute="Decimal" context="#stay" String="[\d_]*'d[\d_]+"/> + <RegExpr attribute="Octal" context="#stay" String="[\d_]*'o[0-7xXzZ_]+"/> + <RegExpr attribute="Hex" context="#stay" String="[\d_]*'h[\da-fA-FxXzZ_]+"/> + <RegExpr attribute="Binary" context="#stay" String="[\d_]*'b[01_zZxX]+"/> + <Float attribute="Float" context="#stay"/> + <Int attribute="Integer" context="#stay" /> + + <RegExpr attribute="Port connection" context="#stay" String="[^\w$]\.[a-zA-Z]+[\w$]*"/> + + <DetectChar attribute="String" context="String" char="""/> + <Detect2Chars attribute="Comment" context="Commentar 1" char="/" char1="/"/> + <Detect2Chars attribute="Comment" context="Commentar 2" char="/" char1="*"/> + <AnyChar attribute="Symbol" context="#stay" String="!%&()+,-<=+/:;>?[]^{|}~@"/> + + <StringDetect attribute="Comment" context="Some Context2" String="#if 0" insensitive="FALSE" firstNonSpace="true"/> + + <DetectChar attribute="Preprocessor" context="Preprocessor" char="`" column="0"/> + <RegExpr attribute="Preprocessor" context="#stay" String="\`[a-zA-Z_]+\w*" /> + <RegExpr attribute="System Task" context="#stay" String="\$[a-zA-Z_]+\w*" /> + <RegExpr attribute="Delay" context="#stay" String="#[\d_]+" /> + </context> + <context attribute="String" lineEndContext="#pop" name="String"> + <LineContinue attribute="String" context="Some Context"/> + <HlCStringChar attribute="String Char" context="#stay"/> + <DetectChar attribute="String" context="#pop" char="""/> + </context> + <context attribute="Comment" lineEndContext="#pop" name="Commentar 1"> + <RegExpr attribute="Alert" context="#stay" String="(FIXME|TODO)" /> + </context> + <context attribute="Comment" lineEndContext="#stay" name="Commentar 2"> + <RegExpr attribute="Alert" context="#stay" String="(FIXME|TODO)" /> + <Detect2Chars attribute="Comment" context="#pop" char="*" char1="/"/> + </context> + <context attribute="Preprocessor" lineEndContext="#pop" name="Preprocessor"> + <LineContinue attribute="Preprocessor" context="Some Context"/> + <RangeDetect attribute="Prep. Lib" context="#stay" char=""" char1="""/> + <RangeDetect attribute="Prep. Lib" context="#stay" char="<" char1=">"/> + <Detect2Chars attribute="Comment" context="Commentar 1" char="/" char1="/"/> + <Detect2Chars attribute="Comment" context="Commentar/Preprocessor" char="/" char1="*"/> + </context> + <context attribute="Comment" lineEndContext="#stay" name="Commentar/Preprocessor"> + <Detect2Chars attribute="Comment" context="#pop" char="*" char1="/" /> + </context> + <context attribute="Normal Text" lineEndContext="#pop" name="Some Context"/> + <context attribute="Comment" lineEndContext="#stay" name="Some Context2"> + <RegExpr attribute="Alert" context="#stay" String="(FIXME|TODO)" /> + <StringDetect attribute="Comment" context="#pop" String="#endif" firstNonSpace="true"/> + </context> + + <context attribute="Block name" lineEndContext="#pop" name="Block name"> + <RegExpr attribute="Data Type" context="#pop" String="[^ ]+"/> + </context> + </contexts> + + <itemDatas> + <itemData name="Normal Text" defStyleNum="dsNormal"/> + <itemData name="Keyword" defStyleNum="dsKeyword"/> + <itemData name="Data Type" defStyleNum="dsDataType"/> + + <itemData name="Decimal" defStyleNum="dsBaseN"/> + <itemData name="Octal" defStyleNum="dsBaseN"/> + <itemData name="Hex" defStyleNum="dsBaseN"/> + <itemData name="Binary" defStyleNum="dsBaseN"/> + <itemData name="Float" defStyleNum="dsFloat"/> + + <itemData name="String" defStyleNum="dsString"/> + <itemData name="String Char" defStyleNum="dsChar"/> + <itemData name="Comment" defStyleNum="dsComment"/> + <itemData name="Alert" defStyleNum="dsAlert" /> + <itemData name="Symbol" defStyleNum="dsNormal"/> + <itemData name="Preprocessor" defStyleNum="dsOthers"/> + <itemData name="Prep. Lib" defStyleNum="dsFloat"/> + <itemData name="System Task" defStyleNum="dsDataType"/> + + <itemData name="Integer" defStyleNum="dsDecVal"/> + <itemData name="Delay" defStyleNum="dsBaseN"/> + <itemData name="Block name" defStyleNum="dsDataType"/> + <itemData name="Drive/charge strength" defStyleNum="dsBaseN"/> + <itemData name="Gate instantiation" defStyleNum="dsDataType"/> + <itemData name="Port connection" defStyleNum="dsDataType"/> + </itemDatas> + </highlighting> + <general> + <comments> + <comment name="singleLine" start="//" /> + <comment name="multiLine" start="/*" end="*/" /> + </comments> + <keywords casesensitive="1" /> + </general> +</language> |