Matthew-McRaven / Pepp

The next generation of Pep series simulators
https://compsys-pep.com
GNU General Public License v3.0
4 stars 0 forks source link

Implement step over/outof #510

Open Matthew-McRaven opened 3 weeks ago

Matthew-McRaven commented 3 weeks ago

Continues #500. Split into a separate issue since this will only be testable with ASMB5 programs.

Step out: init a counter to 0. +1 for each (S)CALL, -1 for each (S)RET. Step until -1. Step over: init a counter to 0. +1 for each (S)CALL, -1 for each (S)RET. Step until 0.