Hi, I'm am still relitively new to sega genesis programming. I was wondering if someone could please explain to me how to make a lookup table like so: Cue: dc.b Song1, Song1_Beatmap, 0 dc.b Song2, Song2_Beatmap, 0 Where each entry points to a label for the actual tune data and a label to that songs beatmap data. Any assistance in this matter would be greatly appreciated. Sincerely, Scorpion Illuminati
OK, the basic problem is that dc.b defines byte (8 bit) constants. Since addresses on a 68000 are 24 bits long, you have to store them in a long - basically, use dc.l rather than dc.b