https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: 303eb56800a7b99a6d3192a1042535e473c52f39 authored by hudson@kremvax on 29 July 2009, 23:55:53 UTC
Rework menu code to use async redraw.
Tip revision: 303eb56
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