summaryrefslogtreecommitdiff
path: root/src/svm/SVMLexer.tokens
diff options
context:
space:
mode:
authorGeno <48206120+gabrielegenovese@users.noreply.github.com>2024-07-11 12:57:56 +0200
committerGitHub <noreply@github.com>2024-07-11 12:57:56 +0200
commitb50c7e99603e9f85d82d700d62c16c4fcef88715 (patch)
tree5052206f06e0426a43599cb236652614db04d22e /src/svm/SVMLexer.tokens
parentf0692ff5f9e39cbd1c203e9d5abebf55a3d0f6fc (diff)
Code generation (#20)
Co-authored-by: geno <gabrigeno@gmail> Co-authored-by: Santo Cariotti <santo@dcariotti.me>
Diffstat (limited to 'src/svm/SVMLexer.tokens')
-rw-r--r--src/svm/SVMLexer.tokens56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/svm/SVMLexer.tokens b/src/svm/SVMLexer.tokens
new file mode 100644
index 0000000..e76ba15
--- /dev/null
+++ b/src/svm/SVMLexer.tokens
@@ -0,0 +1,56 @@
+T__0=1
+T__1=2
+T__2=3
+LOAD=4
+STORE=5
+STOREI=6
+MOVE=7
+ADD=8
+ADDI=9
+SUB=10
+SUBI=11
+MUL=12
+MULI=13
+DIV=14
+DIVI=15
+PUSH=16
+PUSHR=17
+POP=18
+POPR=19
+BRANCH=20
+BRANCHEQ=21
+BRANCHLESSEQ=22
+JUMPSUB=23
+RETURNSUB=24
+HALT=25
+REG=26
+LABEL=27
+NUMBER=28
+WHITESP=29
+LINECOMENTS=30
+ERR=31
+'('=1
+')'=2
+':'=3
+'load'=4
+'store'=5
+'storei'=6
+'move'=7
+'add'=8
+'addi'=9
+'sub'=10
+'subi'=11
+'mul'=12
+'muli'=13
+'div'=14
+'divi'=15
+'push'=16
+'pushr'=17
+'pop'=18
+'popr'=19
+'b'=20
+'beq'=21
+'bleq'=22
+'jsub'=23
+'rsub'=24
+'halt'=25