Warning, /frameworks/syntax-highlighting/autotests/input/highlight.ahdl is written in an unsupported language. File is not indexed.

0001 -- Test file for kate's syntax highlighting
0002 Title "Test file";
0003 
0004 -- BEGIN region (a region marker region) :)
0005 
0006 % multiline comment
0007 goes on here %
0008 
0009 -- END
0010 
0011 FUNCTION FCT (Clk, Key) RETURNS (pulse);
0012 
0013 SUBDESIGN CDCLOCK2
0014 (
0015 in           : INPUT;  -- go in
0016 out[3..0]    : OUTPUT; -- come out
0017 )
0018 
0019 VARIABLE
0020 start        : soft;
0021 usec[3..0]   : node;
0022 
0023 BEGIN
0024 
0025 in = FCT(clock, some_key);  -- senseless code
0026 
0027 -- comment
0028 blubb = (blobb[] == H"3ff"); 
0029 
0030 IF in THEN asdf
0031 -- folde me
0032 END IF; 
0033 
0034 TABLE
0035 -- missing code
0036 END TABLE
0037 
0038 
0039 END;
0040 
0041 -- hex, octal, binary
0042 H"0" => B"1000000";
0043 O"01234567";