add some tokens, length1 token support

This commit is contained in:
andromeda
2026-03-07 21:33:28 +01:00
parent 19a3e4ff5b
commit 63e3a1ea7e
2 changed files with 109 additions and 0 deletions

View File

@@ -129,4 +129,27 @@ supported tokens are listed below
| cr3 | 0x004C | |
| cr4 | 0x004D | |
| cr8 | 0x004E | |
| hlt | 0x004F | |
| int3 | 0x0050 | |
| [ | 0x0051 | |
| ] | 0x0052 | |
| xor | 0x0053 | |
| inc | 0x0054 | |
| dec | 0x0055 | |
| mov | 0x0056 | |
| add | 0x0057 | |
| sub | 0x0058 | |
| call | 0x0059 | |
| ret | 0x005A | |
| cmp | 0x005B | |
| je | 0x005C | |
| jne | 0x005D | |
| jge | 0x005E | |
| jg | 0x005F | |
| jle | 0x0060 | |
| jl | 0x0061 | |
| + | 0x0062 | |
| - | 0x0063 | |
| * | 0x0064 | |
| / | 0x0065 | |
| | 0xFFFF | unrecognised token |