https://bitbucket.org/hudson/magic-lantern
Raw File
Tip revision: b094aef723a344ce59fd79eeb60fc15d50809db7 authored by Trammell Hudson on 25 May 2009, 12:28:52 UTC
Added a few more symbols
Tip revision: b094aef
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