mirror of
https://github.com/ZornsLemma/lib6502-jit.git
synced 2025-08-05 09:24:06 +00:00
7 lines
68 B
Perl
Executable File
7 lines
68 B
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
while (<STDIN>) {
|
|
chomp;
|
|
print pack "H*", $_
|
|
}
|