File: highlight.ahdl

package info (click to toggle)
libsyntax-highlight-engine-kate-perl 0.14%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,844 kB
  • sloc: perl: 84,065; ruby: 176; asm: 166; cpp: 144; jsp: 128; haskell: 116; sh: 111; f90: 99; python: 98; ml: 75; javascript: 61; xml: 43; yacc: 37; ansic: 32; tcl: 29; lisp: 24; makefile: 15; awk: 13; php: 5
file content (43 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (24)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- Test file for kate's syntax highlighting
Title "Test file";

-- BEGIN region (a region marker region) :)

% multiline comment
goes on here %

-- END

FUNCTION FCT (Clk, Key) RETURNS (pulse);

SUBDESIGN CDCLOCK2
(
in           : INPUT;  -- go in
out[3..0]    : OUTPUT; -- come out
)

VARIABLE
start        : soft;
usec[3..0]   : node;

BEGIN

in = FCT(clock, some_key);  -- senseless code

-- comment
blubb = (blobb[] == H"3ff"); 

IF in THEN asdf
-- folde me
END IF; 

TABLE
-- missing code
END TABLE


END;

-- hex, octal, binary
H"0" => B"1000000";
O"01234567";