radare2/test/new/db/cmd/cmd_aes
Khairulmizam Samsudin 07d9203366
Code cleanup for r_core_esil_step() (#16017) ##esil
* Code cleanup in r_core_esil_step()
* remove unnecessary call to initializeEsil()
* remove another set PC register in initializeEsil()
* Add test for aes without initialization
2020-02-22 10:09:53 +01:00

39 lines
390 B
Plaintext

NAME=aes help changing seek
FILE=-
EXPECT=<<EOF
0x1
EOF
CMDS=<<EOF
wx 55
e asm.arch=x86
e asm.bits=32
aes
sr PC
s
EOF
RUN
NAME=cmd.esil.intr unset
FILE=-
EXPECT=<<EOF
EOF
CMDS=<<EOF
wx b8010000000f34b801000000cd80ebfe
10aes
EOF
RUN
NAME=aes without initialize
FILE=-
EXPECT=<<EOF
ebx = 0x00000010
EOF
CMDS=<<EOF
e asm.arch=x86
e asm.bits=32
wx bb10000000 # mov ebx, 10
aes
ar~ebx
EOF
RUN