Page 1 of 2
Playing C64 SID files in PureBasic
Posted: Sat Jun 05, 2010 4:48 pm
by Lost
I'm looking for a way to play SID files in PureBasic. I've tried to search the forum but unfortunately came up empty handed.
Any suggestions?
Re: Playing C64 SID files in PureBasic
Posted: Sat Jun 05, 2010 11:51 pm
by idle
Re: Playing C64 SID files in PureBasic
Posted: Sat Jun 05, 2010 11:55 pm
by Peace
TitchySID by StatMat (MASM & PureBasic): One of the best (smallest) libs I ever used!
Follow the link and look under at the last entry by eNeRGy of Dawn
http://www.dawncreations.com/index.php? ... pic=289.15
Re: Playing C64 SID files in PureBasic
Posted: Sun Jun 06, 2010 3:32 pm
by Lost
Thanks guys, I'll check both of them out.
Re: Playing C64 SID files in PureBasic
Posted: Wed Jun 16, 2010 12:26 pm
by Psychophanta
This is very nice. Useful for demos, intros, hackings, crackings, tools...
Thanks!
Re: Playing C64 SID files in PureBasic
Posted: Sun May 05, 2013 10:27 am
by Psychophanta
This marvelous SID song does not work with TitchySID 1.2:
http://www.youtube.com/watch?v=Z_tyUNG-eNc
Title: Bombastic.sid by Drax
Re: Playing C64 SID files in PureBasic
Posted: Fri Jan 03, 2014 12:00 am
by majikeyric
The link is broken,
is there somewhere TitchySID 1.2 beta for purebasic to download ?
Many thanks

Re: Playing C64 SID files in PureBasic
Posted: Fri Jan 03, 2014 2:44 pm
by Psychophanta
Re: Playing C64 SID files in PureBasic
Posted: Fri Jan 03, 2014 8:44 pm
by majikeyric
Re: Playing C64 SID files in PureBasic
Posted: Wed Oct 15, 2014 7:19 pm
by firace
Hi majikeyric,
would you still have TitchySID v1.2 for download? I can't find a working link anywhere...
I have version 1.0 and was wondering if some sound emulation bugs were resolved in v1.2.
Thanks!
Re: Playing C64 SID files in PureBasic
Posted: Thu Oct 16, 2014 10:29 pm
by majikeyric
Re: Playing C64 SID files in PureBasic
Posted: Fri Oct 17, 2014 7:11 pm
by firace
Awesome, thanks a lot. Can't get it to build with PB 5.30, though. Will try again when I get more time.
Re: Playing C64 SID files in PureBasic
Posted: Sat Oct 18, 2014 2:00 pm
by majikeyric
I can't either, if you have an idea...

Re: Playing C64 SID files in PureBasic
Posted: Sat Oct 18, 2014 3:54 pm
by DK_PETER
majikeyric wrote:I can't either, if you have an idea...

It works just fine..
You just have to use PB x86 version.
Do the following:
Copy the content of the two folders to the corresponding PB x86's folders.
Next go to code:
Change data section:
Code: Select all
DataSection
SidStart:IncludeBinary ".Skyflash_01.sid":sidend:
EndDataSection
to
Code: Select all
DataSection
SidStart:
IncludeBinary "Skyflash_01.sid"
sidend:
EndDataSection
Now execute....
Tested with PB x86 5.31 b3
Re: Playing C64 SID files in PureBasic
Posted: Sat Oct 18, 2014 4:14 pm
by majikeyric
Many thanks DK_PETER !
I really wonder why masm32.lib is needed ?