savezelda/lsw/make-title-bin.pl

17 lines
235 B
Perl
Raw Permalink Normal View History

2011-02-02 03:14:14 +01:00
#!/usr/bin/perl
sub printline {
my $x = shift;
chomp $x;
$x .= "\0" x 32;
$x = substr $x, 0, 32;
$x =~ s/(.)/\0$1/g;
print $x;
}
$name = "Return of the Jodi";
$version = `cat ../.version`;
printline $name;
printline $version;