Skip to content

Commit 79b5f04

Browse files
committed
[WIP] Implement simple subroutine opcodes
1 parent a5033f5 commit 79b5f04

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

eth/vm/rstack.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919

2020
"""
21-
This module simply implements for the return stack the exact same design used for the data stack. As this stack must simply push_int or pop1_int any time a subroutine is accessed or left, only those two functions are provided. For the same reason, the class RStack doesn't inherit from the abc StackAPI, as it would require to implement all the abstract methods defined.
21+
This module simply implements for the return stack the exact same design used for the data stack.
22+
As this stack must simply push_int or pop1_int any time a subroutine is accessed or left, only those two functions are provided.
23+
For the same reason, the class RStack doesn't inherit from the abc StackAPI, as it would require to implement all the abstract methods defined.
2224
"""
2325

2426
class RStack():

0 commit comments

Comments
 (0)