Vortex Tracker help

On the creation of AY or Beeper music, including the packages used to do so.
User avatar
uglifruit
Manic Miner
Posts: 703
Joined: Thu Jan 17, 2019 12:41 pm
Location: Leicester
Contact:

Re: Vortex Tracker help

Post by uglifruit »

Thanks both.
I'll try this tomorrow and report back.
CLEAR 23855
User avatar
uglifruit
Manic Miner
Posts: 703
Joined: Thu Jan 17, 2019 12:41 pm
Location: Leicester
Contact:

Re: Vortex Tracker help

Post by uglifruit »

Thanks both.
They both work. I have no idea what I was doing incorrectly, but I'm sorted now.
CLEAR 23855
pianomatt
Drutt
Posts: 21
Joined: Sun May 12, 2019 10:38 pm

Re: Vortex Tracker help

Post by pianomatt »

Sorry to revive an old thread but I'm at a loss here.

I've created a track in Vortex Tracker II, compiled it as described above, assembled the loader exactly as described. Problem is I can't get the track to loop. It finished playback and just ends. I've tried it with a few different files, including a track I made myself. I've even tried two different versions of Vortex Tracker and I'm having no luck with either.
Alone Coder
Manic Miner
Posts: 401
Joined: Fri Jan 03, 2020 10:00 am

Re: Vortex Tracker help

Post by Alone Coder »

Do you have a loop position (L) in your position list?
pianomatt
Drutt
Posts: 21
Joined: Sun May 12, 2019 10:38 pm

Re: Vortex Tracker help

Post by pianomatt »

Yes, it's currently i the middle of the track, but I have tried it at the beginning as well.

Image
Alone Coder
Manic Miner
Posts: 401
Joined: Fri Jan 03, 2020 10:00 am

Re: Vortex Tracker help

Post by Alone Coder »

Maybe this player will help: http://nedoos.ru/svn/filedetails.php?re ... tsplay.asm
More PT3 players in Info Guide #11: http://www.pouet.net/prod.php?which=66207
pianomatt
Drutt
Posts: 21
Joined: Sun May 12, 2019 10:38 pm

Re: Vortex Tracker help

Post by pianomatt »

I figured it out. The previous code seems to be based on the VT tracker example code for play once and then stop.

This code makes the module play over and over until a key is pressed.

Code: Select all

ORG 		49120
CALL 		#C000 ;calling init
		EI ;enable interrupts
Loop		HALT ;wait for next interrupt
		CALL #C005 ;call play
		XOR A ;test keyboard
		IN A,(#FE)
		CPL
		AND 15
		JR Z,Loop
XoRRoX
Manic Miner
Posts: 233
Joined: Wed Jul 11, 2018 6:34 am

Re: Vortex Tracker help

Post by XoRRoX »

Are you trying to play a vt2 or a pt3 file?
As for the pt3 player I use, it uses a so-called "setup" byte to indicate if the tune has to be looped or not.
Post Reply