Skip to content

Commit 720510a

Browse files
committed
SHL, SHR and SAR in three more places...
1 parent 7068c3b commit 720510a

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/aeb_opcodes.erl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ opcode(?OR) -> ?OR;
4747
opcode(?XOR) -> ?XOR;
4848
opcode(?NOT) -> ?NOT;
4949
opcode(?BYTE) -> ?BYTE;
50+
opcode(?SHL) -> ?SHL;
51+
opcode(?SHR) -> ?SHR;
52+
opcode(?SAR) -> ?SAR;
5053
opcode(?SHA3) -> ?SHA3;
5154
opcode(?ADDRESS) -> ?ADDRESS;
5255
opcode(?BALANCE) -> ?BALANCE;
@@ -184,6 +187,9 @@ mnemonic(?OR) -> 'OR' ;
184187
mnemonic(?XOR) -> 'XOR' ;
185188
mnemonic(?NOT) -> 'NOT' ;
186189
mnemonic(?BYTE) -> 'BYTE' ;
190+
mnemonic(?SHL) -> 'SHL' ;
191+
mnemonic(?SHR) -> 'SHR' ;
192+
mnemonic(?SAR) -> 'SAR' ;
187193
mnemonic(?SHA3) -> 'SHA3' ;
188194
mnemonic(?ADDRESS) -> 'ADDRESS' ;
189195
mnemonic(?BALANCE) -> 'BALANCE' ;
@@ -322,6 +328,9 @@ m_to_op('OR') -> ?OR ;
322328
m_to_op('XOR') -> ?XOR ;
323329
m_to_op('NOT') -> ?NOT ;
324330
m_to_op('BYTE') -> ?BYTE ;
331+
m_to_op('SHL') -> ?SHL ;
332+
m_to_op('SHR') -> ?SHR ;
333+
m_to_op('SAR') -> ?SAR ;
325334
m_to_op('SHA3') -> ?SHA3 ;
326335
m_to_op('ADDRESS') -> ?ADDRESS ;
327336
m_to_op('BALANCE') -> ?BALANCE ;

0 commit comments

Comments
 (0)