File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ opcode(?OR) -> ?OR;
4747opcode (? XOR ) -> ? XOR ;
4848opcode (? NOT ) -> ? NOT ;
4949opcode (? BYTE ) -> ? BYTE ;
50+ opcode (? SHL ) -> ? SHL ;
51+ opcode (? SHR ) -> ? SHR ;
52+ opcode (? SAR ) -> ? SAR ;
5053opcode (? SHA3 ) -> ? SHA3 ;
5154opcode (? ADDRESS ) -> ? ADDRESS ;
5255opcode (? BALANCE ) -> ? BALANCE ;
@@ -184,6 +187,9 @@ mnemonic(?OR) -> 'OR' ;
184187mnemonic (? XOR ) -> 'XOR' ;
185188mnemonic (? NOT ) -> 'NOT' ;
186189mnemonic (? BYTE ) -> 'BYTE' ;
190+ mnemonic (? SHL ) -> 'SHL' ;
191+ mnemonic (? SHR ) -> 'SHR' ;
192+ mnemonic (? SAR ) -> 'SAR' ;
187193mnemonic (? SHA3 ) -> 'SHA3' ;
188194mnemonic (? ADDRESS ) -> 'ADDRESS' ;
189195mnemonic (? BALANCE ) -> 'BALANCE' ;
@@ -322,6 +328,9 @@ m_to_op('OR') -> ?OR ;
322328m_to_op ('XOR' ) -> ? XOR ;
323329m_to_op ('NOT' ) -> ? NOT ;
324330m_to_op ('BYTE' ) -> ? BYTE ;
331+ m_to_op ('SHL' ) -> ? SHL ;
332+ m_to_op ('SHR' ) -> ? SHR ;
333+ m_to_op ('SAR' ) -> ? SAR ;
325334m_to_op ('SHA3' ) -> ? SHA3 ;
326335m_to_op ('ADDRESS' ) -> ? ADDRESS ;
327336m_to_op ('BALANCE' ) -> ? BALANCE ;
You can’t perform that action at this time.
0 commit comments