view opcode2function.pl @ 12:a6c212177267

bug fix
author anatofuz
date Sat, 10 Nov 2018 08:08:06 +0900
parents 3525971010e4
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";