view opcode2function.pl @ 11:ee60403fc119

fix regex
author anatofu
date Fri, 09 Nov 2018 20:45:02 +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";