samiam95124 / Pascal-P6

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

1/2: Add return command #55

Closed samiam95124 closed 1 year ago

samiam95124 commented 1 year ago

A new command is added, ret, that returns from the active routine. It works by examining the return address and placing a temp breakpoint there. Then the run mode is entered. This is dependent on #53.

samiam95124 commented 1 year ago

Done.