samiam95124 / Pascal-P6

6th version of Niklaus Wirth's original Pascal language compiler system
Other
28 stars 9 forks source link

1/2: Add stepover commands #54

Closed samiam95124 closed 1 year ago

samiam95124 commented 1 year ago

Add the debug commands so,, sso, sio ssio. These versions of the commands step over calls. These are implemented by checking if a call is to be stepped, then changing to placement of a temp breakpoint after the call instruction and change to run mode. That means this ticket is dependent on #53

samiam95124 commented 1 year ago

Done.