home *** CD-ROM | disk | FTP | other *** search
/ Set of Apple II Hard Drive Images / eric.hdv / SOURCE / HEADER.OLD.txt < prev    next >
Text File  |  2020-08-13  |  1KB  |  45 lines

  1. ;PROGRAM: XXX
  2. ;
  3. ;============================================
  4. ; OBJECT HEADER FILE --- VERSION 1.0  5/29/93
  5. ;============================================
  6. ;
  7. ; This is a standard header file for programs using the object files
  8. ; in this directory.  It defines global constants & object names.
  9. ; The object directory contains object names to be used when objects 
  10. ; call each other.
  11. ;
  12. ;
  13. USRVECT  EQU $000A           ;VECTOR TO OBJECT DRIVER
  14. MSG      EQU $CE             ;MESSAGE POINTER PASSED TO OBJECT
  15. ;
  16. ;------------------------
  17. ;*** OBJECT DIRECTORY ***
  18. ;------------------------
  19. MIDIOUT  EQU $10             ;MIDI OUT CONTROLLER
  20. ;------------------------
  21. ;
  22. ;
  23. ;*==============================================================
  24. ;* ML.INTEGRATOR - integrates basic pgm and ml code @ $804
  25. ;* from NIBBLE, April 1990, (c) 1990 Stephen M. Hall, Mindcraft
  26. ;*==============================================================
  27. ;
  28.          ORG $0801
  29. ;
  30. TXTTAB   EQU $67
  31. BUF      EQU $200
  32. DOSVEC   EQU $3D0
  33. RUN      EQU $D566
  34. ;
  35. MLINTEG0 JMP       MLINTEG   ; *** SEE SECTION 4 ***
  36. ;
  37. ;==================SET UP OBJECT DEFINITIONS HERE
  38. ;
  39. ;EX:     JSR       MSGOUT10  ;SET UP MIDIOUT OBJECT
  40.          RTS
  41. ;
  42. ;==================PUT NEXT PROGRAM MODULE HERE
  43. ;
  44.          CHN       ????????.SRC
  45.