mirror of
https://github.com/mi57730/a2d.git
synced 2024-11-25 10:30:50 +00:00
18 lines
273 B
Perl
Executable File
18 lines
273 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
|
|
while (<STDIN>) {
|
|
chomp;
|
|
s/[^ #]//g;
|
|
tr/ #/01/;
|
|
next unless $_;
|
|
$_ .= '0' while length($_) % 7 != 0;
|
|
|
|
my @a = m/(.......)/g;
|
|
|
|
print ' .byte ' . join(',', map { "px(\%$_)" } @a) . "\n";
|
|
}
|