Implemented the instructions PUSH, POP, PUSHR, POPR, CALL and EXIT.
Added methods for getting the address range of the stack from the memory
handler (Memory::stack_address_range) and for requesting more stack space (Memory::grow_stack).
Should write a test for the PUSHR and POPR instructions.
Implemented the instructions
PUSH
,POP
,PUSHR
,POPR
,CALL
andEXIT
.Added methods for getting the address range of the stack from the memory handler (
Memory::stack_address_range
) and for requesting more stack space (Memory::grow_stack
).Should write a test for the
PUSHR
andPOPR
instructions.Addresses the issue #3.