view opcode2function.pl @ 8:3525971010e4

use FindBin for perlscirpts
author anatofuz
date Mon, 05 Nov 2018 16:44:49 +0900
parents f873ae65aab1
children 5bf045527a94
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";