lib6502-jit/examples/hex2bin

7 lines
68 B
Perl
Executable File

#!/usr/bin/perl
while (<STDIN>) {
chomp;
print pack "H*", $_
}