https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: ad8a0a5b6713a73e55879498a671dc46a1fc3e78 authored by hudson@kremvax on 13 August 2009, 19:52:38 UTC
Fix bug 70: only redraw menu region
Tip revision: ad8a0a5
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