view opcode2function.pl @ 13:5bf045527a94

update opcode2function.pl
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 27 Nov 2018 13:05:20 +0900
parents 3525971010e4
children
line wrap: on
line source

use strict;
use warnings;

use FindBin;
use lib "$FindBin::Bin/lib";
use OPCODE2Function;

my $input =  shift; #or die 'use input cur_op';
chomp $input;

print OPCODE2Function->codes($input)."\n";