https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 54dbdea82c3e07cdbe999d3697b9e1f522c7dd15 authored by Giovanni C on 05 June 2013, 07:47:46 UTC
Close branch 500d.
Tip revision: 54dbdea
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