diff options
Diffstat (limited to 'v2.0/source/DEBEQU.ASM')
| -rw-r--r-- | v2.0/source/DEBEQU.ASM | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/v2.0/source/DEBEQU.ASM b/v2.0/source/DEBEQU.ASM new file mode 100644 index 0000000..5a20f01 --- /dev/null +++ b/v2.0/source/DEBEQU.ASM | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | FALSE EQU 0 | ||
| 2 | TRUE EQU NOT FALSE | ||
| 3 | |||
| 4 | IBMVER EQU true ; Set conditional switches | ||
| 5 | MSVER EQU false | ||
| 6 | |||
| 7 | SYSVER EQU FALSE ; if true, i/o direct to bios | ||
| 8 | ; so DOS can be debugged | ||
| 9 | IBMJAPAN EQU FALSE | ||
| 10 | |||
| 11 | SETCNTC EQU TRUE ; If this is FALSE, DEBUG will not set | ||
| 12 | ; the Control C int vector | ||
| 13 | |||
| 14 | ZIBO EQU TRUE ; true if P traces over interrupts | ||
| 15 | ; and calls and dump looks pretty | ||
| 16 | PROMPT EQU "-" | ||
| 17 | FCB EQU 5CH | ||
| 18 | EXEFCB EQU FCB | ||
| 19 | BUFLEN EQU 80 ; Maximum length of line input buffer | ||
| 20 | BPMAX EQU 10 ; Maximum number of breakpoints | ||
| 21 | BPLEN EQU 5*BPMAX ; Length of breakpoint table | ||
| 22 | REGTABLEN EQU 14 ; Number of registers | ||
| 23 | SEGDIF EQU 0 | ||
| 24 | BUFSIZ EQU 512 | ||
| 25 | |||
| 26 | BXREG EQU "B"+5800H ; "BX" | ||
| 27 | BPREG EQU "B"+5000H ; "BP" | ||
| 28 | SIREG EQU "S"+4900H ; "SI" | ||
| 29 | DIREG EQU "D"+4900H ; "DI" | ||
| 30 | COMMA EQU 2C00H | ||
| 31 | OPBUFLEN EQU 35 | ||
| 32 | \ No newline at end of file | ||