Skip to content

Commit

Permalink
Merge pull request #53 from crytic/0xPhaze-update-asm-description
Browse files Browse the repository at this point in the history
Update evmasm.py
  • Loading branch information
disconnect3d authored Apr 7, 2023
2 parents 17403de + 1f713ed commit e5986bc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyevmasm/evmasm.py
Original file line number Diff line number Diff line change
Expand Up @@ -785,12 +785,12 @@ def __repr__(self):
5,
"Extend length of two's complement signed integer.",
),
0x10: ("LT", 0, 2, 1, 3, "Less-than comparision."),
0x11: ("GT", 0, 2, 1, 3, "Greater-than comparision."),
0x12: ("SLT", 0, 2, 1, 3, "Signed less-than comparision."),
0x13: ("SGT", 0, 2, 1, 3, "Signed greater-than comparision."),
0x14: ("EQ", 0, 2, 1, 3, "Equality comparision."),
0x15: ("ISZERO", 0, 1, 1, 3, "Simple not operator."),
0x10: ("LT", 0, 2, 1, 3, "Less-than comparison."),
0x11: ("GT", 0, 2, 1, 3, "Greater-than comparison."),
0x12: ("SLT", 0, 2, 1, 3, "Signed less-than comparison."),
0x13: ("SGT", 0, 2, 1, 3, "Signed greater-than comparison."),
0x14: ("EQ", 0, 2, 1, 3, "Equality comparison."),
0x15: ("ISZERO", 0, 1, 1, 3, "Equals zero comparison."),
0x16: ("AND", 0, 2, 1, 3, "Bitwise AND operation."),
0x17: ("OR", 0, 2, 1, 3, "Bitwise OR operation."),
0x18: ("XOR", 0, 2, 1, 3, "Bitwise XOR operation."),
Expand Down

0 comments on commit e5986bc

Please sign in to comment.