home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / cncd_editor.zip / carillon.inc < prev    next >
Text File  |  2001-01-09  |  950b  |  32 lines

  1. ; *************************************************************************
  2. ;
  3. ;
  4. ;       CARILLON PLAYER
  5. ;       Music Engine for Nintendo Game Boy and Game Boy Color
  6. ;
  7. ;       (c)2000 Aleksi Eeben (aleksi@cncd.fi)
  8. ;       http://www.cncd.fi/aeeben
  9. ;
  10. ;
  11. ; *************************************************************************
  12.  
  13. ; Included in every Music Bank:
  14.  
  15. Player_Initialize       equ     $4000
  16. Player_MusicStart       equ     $4003
  17. Player_MusicStop        equ     $4006
  18. Player_SongSelect       equ     $400c   ; a = song number (0 - 7)
  19. Player_MusicUpdate      equ     $4100   ; call once every frame
  20.  
  21.  
  22. ; Included in every Sample Bank:
  23.  
  24. Player_SampleUpdate     equ     $4000   ; call 4 times every frame
  25.  
  26.  
  27. ; Included in every SoundFX Bank:
  28.  
  29. SoundFX_Trig            equ     $4000   ; a = sound FX number (0 - 59)
  30. SoundFX_Stop            equ     $4003
  31. SoundFX_Update          equ     $4006   ; call once every frame
  32.