radare2/TODO
pancake 8579a5b41f * Release version to 0.3
- Propagate @VERSION@ from ACR
  - All *2 apps are now supporting a -V flag to show the version
* Fix .dr* command in r_core debugger
  - dr now supports [regtype] [bitsize] arguments
  - Check dr? for help
* Added some 8, 16 bit registers to the dbg.ptrace backend
  - Just for testing :)
* Check build of the whole source tree
  - test programs are now in ${prefix}/bin/libr-test
* Fix lot of warnings and bugs
* Simplify some code
* Some rapification
* Fix segfault in r_reg related to unallocated arenas
  - New function r_reg_type_by_name() resolves string->id
* Fix help of rax2
2009-09-25 04:04:51 +02:00

53 lines
1.8 KiB
Plaintext

____ ___ ____ ___ ____ ___ ______ ____
| _ \/ \' \/ \ _ \/ _ \ \__ | / \
| < V . T . V < _/ .--'_/ | () |
|_|\__|_|__|___/|_|_|_|\__\___/ |_____(_)____/
----------------------------------------[ todo
* store version information in libraries ?
* public delegate void RangeEachFunc(int i);
* public void each(RangeEachFunc each_func) { ... }
* r_io must need a reviewd undo API
** Add R_ASM_PLUGIN_PREFIX... in short
** in a vapi file you can define a different constructor class Foo { bar Bar(); }..
definition of Bar will override the previous Bar() class definition
** .h is not included correctly for each vapi maybe its about order???
<{include libr/TODO}>
* correct result (R_TRUFAE), but with warnings (implement r_errno and r_errstr in r_util?)
- Quantic computation ftw \o/
* r_cmd must provide a nesting char table indexing for commands
- this is pretty similar to r_db
- every module can register their own commands
- commands can be listed like in a tree
* 'Vc' cursor mode makes color toggle
* Finish and import the spp's getopt owns implementation in r_util (like in p9)
* Add maxrows option for r_print (fix visual problem)
* Drop #if conditionals to use #ifdef ones
- fits better with plan9 compiler
- use getopt() p9-like macros
* Add test for config.c with _set_cb
* Rename __UNIX__ as __POSIX__
* Strip non input symbols in plugins (speed up loading)
* Specify binmask in hexpairs
- wx 1234:ff0f
- /x 1234:ff0f
* radare2 -e dbg.engine=vm -d ls
- load the program using r_bin in virtual space
- initialize vm and set regs
- debug backend should use the vm
* Script plugins
- We should enable r_lib to implement plugins in any
scripting language, so we can for example prepare
a .c stub interface for python/perl/ruby/..
- Maybe having a preprocessor tool for this..