diff options
| author | Armand Philippot <git@armandphilippot.com> | 2021-12-30 19:47:21 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2021-12-30 19:47:21 +0100 |
| commit | a98b5ea6fe8e8cc98a55e0fd793e6e8660ea31c1 (patch) | |
| tree | 542810ab5aef99150db228bb54fd58303dcb31c7 /public/prism/prism-asm6502.js | |
| parent | ab355897a12b7bda1089a44de326d41455a0f7a3 (diff) | |
chore: add prismjs for syntax highlighting
Diffstat (limited to 'public/prism/prism-asm6502.js')
| -rw-r--r-- | public/prism/prism-asm6502.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/public/prism/prism-asm6502.js b/public/prism/prism-asm6502.js new file mode 100644 index 0000000..377f52f --- /dev/null +++ b/public/prism/prism-asm6502.js @@ -0,0 +1,30 @@ +Prism.languages.asm6502 = { + comment: /;.*/, + directive: { + pattern: /\.\w+(?= )/, + alias: 'property', + }, + string: /(["'`])(?:\\.|(?!\1)[^\\\r\n])*\1/, + 'op-code': { + pattern: + /\b(?:ADC|AND|ASL|BCC|BCS|BEQ|BIT|BMI|BNE|BPL|BRK|BVC|BVS|CLC|CLD|CLI|CLV|CMP|CPX|CPY|DEC|DEX|DEY|EOR|INC|INX|INY|JMP|JSR|LDA|LDX|LDY|LSR|NOP|ORA|PHA|PHP|PLA|PLP|ROL|ROR|RTI|RTS|SBC|SEC|SED|SEI|STA|STX|STY|TAX|TAY|TSX|TXA|TXS|TYA|adc|and|asl|bcc|bcs|beq|bit|bmi|bne|bpl|brk|bvc|bvs|clc|cld|cli|clv|cmp|cpx|cpy|dec|dex|dey|eor|inc|inx|iny|jmp|jsr|lda|ldx|ldy|lsr|nop|ora|pha|php|pla|plp|rol|ror|rti|rts|sbc|sec|sed|sei|sta|stx|sty|tax|tay|tsx|txa|txs|tya)\b/, + alias: 'keyword', + }, + 'hex-number': { + pattern: /#?\$[\da-f]{1,4}\b/i, + alias: 'number', + }, + 'binary-number': { + pattern: /#?%[01]+\b/, + alias: 'number', + }, + 'decimal-number': { + pattern: /#?\b\d+\b/, + alias: 'number', + }, + register: { + pattern: /\b[xya]\b/i, + alias: 'variable', + }, + punctuation: /[(),:]/, +}; |
