https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: f2f5ecdb767db1d46bf24c4c9145e15a5859954d authored by hudson@kremvax on 18 June 2009, 01:58:04 UTC
Bump version and added install target
Tip revision: f2f5ecd
map2idc
#!/usr/bin/perl
use warnings;
use strict;

my $base = 0xFFF00000;

print <<"";
static main() {


#
# Parse the symbol dump from IDA Pro and output
# code into the .S file to define stubs for each of the
# entities.
#
while( <> )
{
	my ($addr,$name) = /^\s*0001:([0-9A-Fa-f]+)\s+([^\s]+)\s*$/
                       	or next;
	$addr = hex($addr);
	$addr += $base;

	printf "MakeNameEx( 0x%08x, \"%s\", 0x2 );\n",
		$addr,
		$name,
	;
}


print <<"";
}

__END__
back to top