dotrace.prg

来自「用汇编语言或高级语言编写的源程序翻译成机器可执行的机器语言程序的工具称为“语言处」· PRG 代码 · 共 27 行

PRG
27
字号
procedure temptrac
parameter dodebug
push key clear
wait window "Escape and function keys are disabled while trace window is opened" timeout 2
_throttle = .10
if dodebug = 1
	activate window debug
	activate window trace
	play macro debugit
	suspend
else
	activate window trace
endif

for counter = 1 to 10
	testnum1 = counter * 3
	looptalk = "This small routine"
	looptalk = "demonstrates using"
	looptalk = "trace and debug"
	testnum2 = counter/2
endfor

release window trace
if dodebug = 1
	release window debug
endif
pop key

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?