home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / sound / midi / equates.asm next >
Assembly Source File  |  1988-03-20  |  2KB  |  50 lines

  1. ;==============================================================
  2. ; include file for general equates
  3. ;--------------------------------------------------------------
  4.         version equ 01H
  5.         release equ 12H
  6. ;--------------------------------------------------------------
  7.         true    equ -1
  8.         false   equ 0
  9.         ;
  10.         debug   equ false      ; if true, debug stuff gets compiled
  11.         really  =   false      ; if true, debug stuff gets executed 
  12.         ;
  13.         withc   equ false      ; true if compiled with C
  14.         ; 
  15.         cr      equ 0DH
  16.         lf      equ 0AH
  17.         maxmods equ 511         ; 512 active modules max
  18.         black   equ 0
  19.         blu     equ 100h
  20.         blue    equ 1
  21.         grn     equ 200h
  22.         green   equ 2
  23.         cyn     equ 300h
  24.         cyan    equ 3
  25.         rde     equ 400h
  26.         red     equ 4
  27.         mag     equ 500h
  28.         magenta equ 5   
  29.         yel     equ 600h
  30.         yellow  equ 6
  31.         whi     equ 700h
  32.         white   equ 7
  33.         gry     equ 800h
  34.         grey    equ 8
  35.         hi      equ 8
  36.         lo      equ 8 xor -1
  37. ;--------------------------------------------------------------
  38. ; EQUATES for MPU
  39. mpdata  equ 0330H               ; mpu data port address
  40. mpstat  equ 0331H               ; mpu status port address
  41. mpucmd  equ 0331H               ; mpu command port address
  42. mpdsr   equ 80H                 ; mpu data set ready, active low
  43. mpdrr   equ 40H                 ; mpu data read ready, active low
  44. ;--------------------------------------------------------------
  45. ; table sizes
  46. varsiz  equ 25600               ; variable table size
  47.  
  48.  
  49. ;--------------------------------------------------------------
  50.