* Rename missing Analysis Defines * Rename analysis config vars and other lower case stuff * Rename test/db/analysis * Fix analysis tests Co-authored-by: Anton Kochkov <anton.kochkov@gmail.com>
122 lines
1.3 KiB
Text
122 lines
1.3 KiB
Text
NAME=jp nnn
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 1240
|
|
ao~^jump
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000240
|
|
EOF
|
|
RUN
|
|
|
|
NAME=jp v0, nnn
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx b220
|
|
ao~^jump
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000220
|
|
EOF
|
|
RUN
|
|
|
|
NAME=call nnn
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 2224
|
|
ao~jump
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000224
|
|
EOF
|
|
RUN
|
|
|
|
NAME=se vx, kk
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 3a00
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|
|
|
|
NAME=se vx, vy
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 5ab0
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|
|
|
|
NAME=sne vx, kk
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 4a00
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|
|
|
|
NAME=sne vx, vy
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx 9ab0
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|
|
|
|
NAME=skp vx
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx ea9e
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|
|
|
|
NAME=sknp vx
|
|
FILE=malloc://1024
|
|
CMDS=<<EOF
|
|
e asm.arch=chip8
|
|
s 0x200
|
|
wx eaa1
|
|
ao~jump,fail
|
|
EOF
|
|
EXPECT=<<EOF
|
|
jump: 0x00000204
|
|
fail: 0x00000202
|
|
EOF
|
|
RUN
|