https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 7e5abead90242078f7b8017997878dfff4aca7dc authored by Trammell Hudson on 11 May 2009, 22:37:53 UTC
Branches into my_init_task() now work. Rejoice!
Tip revision: 7e5abea
string-dump
#!/usr/bin/perl
use warnings;
use strict;

while(<>)
{
	my ($val) = /:\s*([0-9A-Fa-f]+)\s*/ or next;
	$val = hex $val;
	while( $val )
	{
		print chr( $val & 0xFF );
		$val >>= 8;
	}
}

print "\n";
back to top