* Fix command 'cg'

This commit is contained in:
Nibble 2011-02-11 15:42:38 +01:00
parent 9acb486f7b
commit 9a20ce63b2
2 changed files with 1 additions and 2 deletions

2
TODO
View File

@ -75,8 +75,6 @@ nibble
- do not allow to disassemble unaligned addresses (toggle)
- use 'jk' with bwdisasm to go up to previous opcode.
- r_asm can reduce cpu without disasm on fixed size ops archs.
* not identified as cmp instruction by analysis. (85f6 test esi, esi)
* x86im plugin does not detects int instructions (i have workaround it, but hacks sucks here)
0.7 release
===========

View File

@ -1542,6 +1542,7 @@ static int cmd_cmp(void *data, const char *input) {
r_core_free (core2);
return R_FALSE;
}
r_core_bin_load (core2, file2);
r_core_gdiff (core, core2);
r_core_free (core2);
}