Bump version and update Changes
[app-scheme79asm.git] / scheme79asm
CommitLineData
509643aa
MG
1#!/usr/bin/perl
2use 5.014000;
3
4use App::Scheme79asm;
5use Getopt::Long;
6
7my $type_bits;
8my $addr_bits;
9
10GetOptions ('addr-bits=i' => \$addr_bits, 'type-bits=i' => \$type_bits);
11
12my $asm = App::Scheme79asm->new(addr_bits => $addr_bits, type_bits => $type_bits);
13my $str = join '', <>;
14$asm->parse_and_print($str);
15
16__END__
This page took 0.009603 seconds and 4 git commands to generate.