From a98b5ea6fe8e8cc98a55e0fd793e6e8660ea31c1 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 30 Dec 2021 19:47:21 +0100 Subject: chore: add prismjs for syntax highlighting --- public/prism/prism-nasm.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 public/prism/prism-nasm.js (limited to 'public/prism/prism-nasm.js') diff --git a/public/prism/prism-nasm.js b/public/prism/prism-nasm.js new file mode 100644 index 0000000..ea2f95e --- /dev/null +++ b/public/prism/prism-nasm.js @@ -0,0 +1,26 @@ +Prism.languages.nasm = { + comment: /;.*$/m, + string: /(["'`])(?:\\.|(?!\1)[^\\\r\n])*\1/, + label: { + pattern: /(^\s*)[A-Za-z._?$][\w.?$@~#]*:/m, + lookbehind: true, + alias: 'function', + }, + keyword: [ + /\[?BITS (?:16|32|64)\]?/, + { + pattern: /(^\s*)section\s*[a-z.]+:?/im, + lookbehind: true, + }, + /(?:extern|global)[^;\r\n]*/i, + /(?:CPU|DEFAULT|FLOAT).*$/m, + ], + register: { + pattern: + /\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(?:bp|di|si|sp)|[cdefgs]s)\b/i, + alias: 'variable', + }, + number: + /(?:\b|(?=\$))(?:0[hx](?:\.[\da-f]+|[\da-f]+(?:\.[\da-f]+)?)(?:p[+-]?\d+)?|\d[\da-f]+[hx]|\$\d[\da-f]*|0[oq][0-7]+|[0-7]+[oq]|0[by][01]+|[01]+[by]|0[dt]\d+|(?:\d+(?:\.\d+)?|\.\d+)(?:\.?e[+-]?\d+)?[dt]?)\b/i, + operator: /[\[\]*+\-\/%<>=&|$!]/, +}; -- cgit v1.2.3