tkernelcn

Results 24 comments of tkernelcn
trafficstars

there are some other issue on my build, let aaa crash: ```sh peter@peter-VirtualBox:~/tmp/test_radare2$ /home/peter/bin/r2 -a mips -b 32 -e asm.cpu=micro /mnt/share/AppFW_flash_no_fs.elf -- Interpret radare2 scripts with '. '. Similar to...

try to use `apt-get install radare2` software in another linux ```sh p10:~/git_workspace/REPO_FW/common/CP/images$ r2 -a mips -b 32 -e asm.cpu=micro ./AppFW_flash_no_fs.elf [0x98384b0f]> e anal.hasnext=true [0x98384b0f]> afr [0x98384b0f]> aaa [Cannot find function...

the point is: a lot of `unaligned` and `invalid` in disassemble code ```sh ;-- libFS_copy: 0x98541e8c 4fe5 addiusp -0x38 0x98541e8e 22fd unaligned 0x98541e90 d01840e4 andi zero, t8, 0x40e4 0x98541e94 0007ae92...

@trufae Thanks for your support! It's very strange, I `git pull` and `$ ./sys/user.sh` to build a latest version PS: before build r2, I also git clone latest capstone and...

@trufae please see the details instructions, not the same meaning with gdb disassemble result ```sh 0x98541e8d : 4f e5 addiu sp,sp,-56 0x98541e8e : 22 fd d0 18 swm s0-s6,ra,24(sp) 0x98541e92...

hello @trufae, due to company policy can't provide the entire elf binary file, sorry for that. is it suitable that use the instructions string: `4fe522fdd01840e40007ae920e2541a49860cc0630847090` (If needed, I can dump...

cool, It works, Thanks your great effort! ```sh $ rasm2 -a mips.gnu -b32 -c micro -e -d 4fe522fdd01840e40007ae920e2541a49860cc0630847090 addiu sp, sp, -56 swm s0-s6,ra, 24(sp) beqzc a0, 0x00000019 bnez a1,...

also have confusion on r2 disassemble display:(many `unaligned` error instructions) ```sh $ r2 -a mips.gnu -b 32 -e asm.cpu=micro -e cfg.bigendian=true /mnt/share/AppFW_flash_no_fs.elf [0x98384b0f]> aaa [0x98384b0f]> s sym.libFS_copy [0x98541e8c]> s 0x98541e8c...

[libFS_copy_binary.zip](https://github.com/radareorg/radare2/files/10432027/libFS_copy_binary.zip) upload the memory instructions binary for your CI test compare with the gdb results: ```sh Dump of assembler code for function libFS_copy: 0x98542285 : 4f e5 addiu sp,sp,-56 0x98542286...

[test_micro-mips.zip](https://github.com/radareorg/radare2/files/10432105/test_micro-mips.zip) can compare the result with gdb output ```sh Dump of assembler code for function main: 0x004000d1 : lui gp,0x2 0x004000d5 : addiu gp,gp,-32225 0x004000d9 : addu gp,gp,t9 0x004000dd :...