You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following X bytes are read from PC, placed into a word, then this word is pushed onto the stack.
193
193
194
-
### CALL
194
+
### SHR
195
+
196
+
Pops 2 elements from the stack and pushes the second element onto the stack shifted right by the shift amount (first element).
197
+
198
+
### SHL
199
+
200
+
Pops 2 elements from the stack and pushes the second element onto the stack shifted left by the shift amount (first element).
201
+
202
+
### MSTORE
203
+
204
+
Saves a word to the EVM memory. Pops 2 elements from stack - the first element being the word memory address where the saved value (second element popped from stack) will be stored.
0 commit comments