mirror of
https://github.com/mi57730/a2d.git
synced 2025-02-18 02:30:50 +00:00
12 lines
207 B
Perl
Executable File
12 lines
207 B
Perl
Executable File
#!/usr/bin/env perl
|
|
|
|
# Convert $xx into px(bbbbbbb) - input to A2D_DRAW_PATTERN
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
while (<STDIN>) {
|
|
s/(\$(..))/'px(%' . reverse(sprintf('%07b', hex($2))) . ')'/eg;
|
|
print;
|
|
}
|