~ubuntu-branches/ubuntu/saucy/radare/saucy

« back to all changes in this revision

Viewing changes to src/rasm/rasm.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Reichel
  • Date: 2009-05-22 19:01:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090522190100-qqp4aja112976t5v
Tags: 20090522-1
* new hg checkout
 - added 'cX' command to compare like 'cc' does but using two side hexdiff dump format
 - specify pointer & data size in pm with %<size>
 - add graph.weight
 - fix 'c' command (missing radare_read(0))
 - added /P search command that searchs for proximity in bytelevel distance
 - added more 'ag' and 'gu' commands to readline autocompletion.
 - fix build of debugger for non-linux systems
 - fixed code analysis at startup
 - more work in graphs (graph.split)
 - fixups in x86 code analysis

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
int rasm_arm(u64 offset, const char *str, u8 *data);
14
14
int rasm_java(u64 offset, const char *str, u8 *data);
15
15
int rasm_ppc(u64 offset, const char *str, u8 *data);
 
16
int rasm_rsc(u64 offset, const char *str, unsigned char *data);
16
17
 
17
18
/* assemble disassemble list .. */
18
19
int rasm_asm(const char *arch, u64 *offset, const char *str, unsigned char *data);