; Command listing:

; autoexec - executes as the debugger is loading. Will enable

; the screen and clear picW, picH, pass1 from the symbol table.

; Expect a few second delay as this executes.

; tr, sr - these commands work just like s and t except that

; the registers will list after each iteration.

; spc, rpc - saves and restores the current program counter. Handy

; when you need to remember an address.

; dis - this command is changed so that it will disassemble forever.

; It is much better this way, try it! dis_ is internal - don't use it.

; link trk,sec - Displays sector links given a starting track and sector.

; link by itself will use the T&S in $8000 and $8001. link_ is internal.

.macro autoexec

@0ÄcrÜ

opt 5,1ÄcrÜ

clrsym pic?ÄcrÜ

clrsym pass1ÄcrÜ

.endm

.macro tr

sÄcrÜ

prÄcrÜ

rÄcrÜ

pr "---------------------------------------"ÄcrÜ

.endm

.macro sr

tÄcrÜ

prÄcrÜ

rÄcrÜ

pr "---------------------------------------"ÄcrÜ

.endm

.macro spc

@0ÄcrÜ

@11,r.pcÄcrÜ

.endm

.macro rpc

@0ÄcrÜ

@ÄpcÄcrÜ

ÄspÜu.1ÄcrÜ

pcÄcrÜ

.endm

.macro dis_

@/arg0ÄcrÜ

jjjjjjjjjjjjjjjjjjjjjjÄcrÜ

@1lc,u.lc+@#u.lcÄcrÜ

@1fn,1ÄcrÜ

.endm

.macro dis

dis_ arg0ÄcrÜ

for .1:.2,dis_ÄcrÜ

.endm