Skip to content

Commit 0ff2e0f

Browse files
authored
Conform descriptions with Yellow Paper
Revert changes of f360fc8 to conform with the Ethereum Yellow Paper.
1 parent 8e4cb73 commit 0ff2e0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyevmasm/evmasm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def __repr__(self):
789789
0x11: ("GT", 0, 2, 1, 3, "Greater-than comparison."),
790790
0x12: ("SLT", 0, 2, 1, 3, "Signed less-than comparison."),
791791
0x13: ("SGT", 0, 2, 1, 3, "Signed greater-than comparison."),
792-
0x14: ("EQ", 0, 2, 1, 3, "Equality comparison."),
792+
0x14: ("EQ", 0, 2, 1, 3, "Simple not operator."),
793793
0x15: ("ISZERO", 0, 1, 1, 3, "Equals zero comparison."),
794794
0x16: ("AND", 0, 2, 1, 3, "Bitwise AND operation."),
795795
0x17: ("OR", 0, 2, 1, 3, "Bitwise OR operation."),

0 commit comments

Comments
 (0)