Merge pull request #4 from aeternity/PT-163388694-add_native_bit_shift

Add opcodes SHL, SHR and SAR
This commit is contained in:
Hans Svensson 2019-01-22 20:19:47 +01:00 committed by GitHub
commit 7068c3b3a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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