home *** CD-ROM | disk | FTP | other *** search
- ;==============================================================
- ; include file for general equates
- ;--------------------------------------------------------------
- version equ 01H
- release equ 12H
- ;--------------------------------------------------------------
- true equ -1
- false equ 0
- ;
- debug equ false ; if true, debug stuff gets compiled
- really = false ; if true, debug stuff gets executed
- ;
- withc equ false ; true if compiled with C
- ;
- cr equ 0DH
- lf equ 0AH
- maxmods equ 511 ; 512 active modules max
- black equ 0
- blu equ 100h
- blue equ 1
- grn equ 200h
- green equ 2
- cyn equ 300h
- cyan equ 3
- rde equ 400h
- red equ 4
- mag equ 500h
- magenta equ 5
- yel equ 600h
- yellow equ 6
- whi equ 700h
- white equ 7
- gry equ 800h
- grey equ 8
- hi equ 8
- lo equ 8 xor -1
- ;--------------------------------------------------------------
- ; EQUATES for MPU
- mpdata equ 0330H ; mpu data port address
- mpstat equ 0331H ; mpu status port address
- mpucmd equ 0331H ; mpu command port address
- mpdsr equ 80H ; mpu data set ready, active low
- mpdrr equ 40H ; mpu data read ready, active low
- ;--------------------------------------------------------------
- ; table sizes
- varsiz equ 25600 ; variable table size
-
-
- ;--------------------------------------------------------------
-