mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
24
dashboard-ui/bower_components/prism/components/prism-nasm.js
vendored
Normal file
24
dashboard-ui/bower_components/prism/components/prism-nasm.js
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
Prism.languages.nasm = {
|
||||
'comment': /;.*$/m,
|
||||
'string': /("|'|`)(\\?.)*?\1/m,
|
||||
'label': {
|
||||
pattern: /(^\s*)[A-Za-z._?$][\w.?$@~#]*:/m,
|
||||
lookbehind: true,
|
||||
alias: 'function'
|
||||
},
|
||||
'keyword': [
|
||||
/\[?BITS (16|32|64)\]?/m,
|
||||
{
|
||||
pattern: /(^\s*)section\s*[a-zA-Z\.]+:?/im,
|
||||
lookbehind: true
|
||||
},
|
||||
/(?:extern|global)[^;\r\n]*/im,
|
||||
/(?:CPU|FLOAT|DEFAULT).*$/m
|
||||
],
|
||||
'register': {
|
||||
pattern: /\b(?:st\d|[xyz]mm\d\d?|[cdt]r\d|r\d\d?[bwd]?|[er]?[abcd]x|[abcd][hl]|[er]?(bp|sp|si|di)|[cdefgs]s)\b/i,
|
||||
alias: 'variable'
|
||||
},
|
||||
'number': /(\b|-|(?=\$))(0[hx][\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+(\.?e[+-]?\d+)?[dt]?)\b/i,
|
||||
'operator': /[\[\]*+\-\/%<>=&|$!]/
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue