Add opcodes SHL and SHR

This commit is contained in:
Hans Svensson 2019-01-22 20:09:22 +01:00
parent 6aec14e64d
commit 600d2cb12c

View File

@ -24,6 +24,9 @@
-define( 'XOR', 16#18). -define( 'XOR', 16#18).
-define( 'NOT', 16#19). -define( 'NOT', 16#19).
-define( 'BYTE', 16#1a). -define( 'BYTE', 16#1a).
-define( 'SHL', 16#1b).
-define( 'SHR', 16#1c).
-define( 'SAR', 16#1d).
-define( 'SHA3', 16#20). -define( 'SHA3', 16#20).