We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255dcbc commit f2f1d31Copy full SHA for f2f1d31
eth/abc.py
@@ -1590,6 +1590,21 @@ def stack_dup(self, position: int) -> None:
1590
"""
1591
...
1592
1593
+ #
1594
+ # Return Stack Managemement
1595
1596
+ @abstract_method
1597
+ def rstack_push_int(self) -> Callable[[int], None]:
1598
+ """
1599
+ Push integer onto the return stack.
1600
1601
+
1602
1603
+ def rstack_pop1_int(self) -> Callable[[int], None]:
1604
1605
+ Pop integer off the return stack and return it.
1606
1607
1608
#
1609
# Computation result
1610
0 commit comments