Difference between revisions of "TRACKER HOUSTONTRACKER2 DATA"

From MSX MUSIC WIKI
Jump to: navigation, search
(Created page with " musicData ;initialize an empty song on first run speed db #10 ;speed usrDrum dw #0 ;usr drum pointer looprow db 0 ;loop point (row#) ptns ;the p...")
 
Line 11: Line 11:
 
  ds 256*4,#ff ;1024+1 #ff bytes
 
  ds 256*4,#ff ;1024+1 #ff bytes
 
  db #ff
 
  db #ff
 
+
 
  ptn00 ;the note patterns
 
  ptn00 ;the note patterns
ds 16*128 ;128*16 #00 bytes
+
ds 16*128 ;128*16 #00 bytes
+
 
 
  fxptn00 ;the fx patterns
 
  fxptn00 ;the fx patterns
ds 32*64 ;64*32 #00 bytes
+
  ds 32*64 ;64*32 #00 bytes
 
   
 
   
 
  musicEnd equ $
 
  musicEnd equ $

Revision as of 11:43, 28 April 2021

musicData				;initialize an empty song on first run

speed
	db #10				;speed
usrDrum
	dw #0				;usr drum pointer
looprow
	db 0				;loop point (row#)

ptns					;the pattern matrix
	ds 256*4,#ff			;1024+1 #ff bytes
	db #ff

ptn00					;the note patterns
	ds 16*128			;128*16 #00 bytes
 
fxptn00					;the fx patterns
 	ds 32*64			;64*32 #00 bytes

musicEnd equ $