https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 86f8766eaa93fa0489bf93a7ecb6d050f49c2c32 authored by indiana arm on 23 December 2010, 20:34:33 UTC
initial 60d branch. boot, but no menus
Tip revision: 86f8766
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