| |
repsam94 Account closed
Registered: Feb 2007 Posts: 3 |
Converting from Sound Monitor to SID
Hi,
Does someone know if it's possible to convert music created with Sound Monitor into SID-format? |
|
| |
SIDWAVE Account closed
Registered: Apr 2002 Posts: 2238 |
enter code at $9ff8:
lda #$01
sta $c00f
jmp $c000
then save $9ff8-$cbd4
Move the soundmon file to pc, then use sidedit to make psid file.
http://www.transbyte.org/SID/SIDedit_v4.02_Win32.zip
init $9ff8
play 0
set speed to 1 (CIA)
|
| |
Bamu® Account closed
Registered: May 2005 Posts: 1332 |
Quote: enter code at $9ff8:
lda #$01
sta $c00f
jmp $c000
then save $9ff8-$cbd4
Move the soundmon file to pc, then use sidedit to make psid file.
http://www.transbyte.org/SID/SIDedit_v4.02_Win32.zip
init $9ff8
play 0
set speed to 1 (CIA)
Haa, you were faster than me. :) |
| |
repsam94 Account closed
Registered: Feb 2007 Posts: 3 |
Thanks a lot :-) It works fine now!
However, I discovered, that some of my tunes have been created with Rockmonitor, with the extra drum track.
Is it possible to include these drums in a SID-file as well? |
| |
Conrad
Registered: Nov 2006 Posts: 849 |
Quote: Thanks a lot :-) It works fine now!
However, I discovered, that some of my tunes have been created with Rockmonitor, with the extra drum track.
Is it possible to include these drums in a SID-file as well?
With Rockmonitor tunes the sample data is usually before $9ff8 (usually starts around $6000 or $7000, depending how many samples are used, you will need to check.) Also, you won't need to do the coding at $9ff8 for RockMonitor tunes as start code will be there already, afaik. |
| |
repsam94 Account closed
Registered: Feb 2007 Posts: 3 |
I just got the Rockmonitor-files converted to SID, playing the drums as well :-)
Thanks for all the help! |
| |
Rough Account closed
Registered: Feb 2002 Posts: 1829 |
Quote: enter code at $9ff8:
lda #$01
sta $c00f
jmp $c000
then save $9ff8-$cbd4
Move the soundmon file to pc, then use sidedit to make psid file.
http://www.transbyte.org/SID/SIDedit_v4.02_Win32.zip
init $9ff8
play 0
set speed to 1 (CIA)
I prefer initing the routine with LDA#$01 STA$C00F RTS and play interrupt at $C475, you wont need to set CIA speed to 1 then. |
| |
SIDWAVE Account closed
Registered: Apr 2002 Posts: 2238 |
But soundmon uses CIA, so if you have changed the tempo in BF00 then the tune will play wrong in IRQ. |
| |
Rough Account closed
Registered: Feb 2002 Posts: 1829 |
all the rips I did this way play at correct speed (I hope at least) and there are many of such rips in HVSC by different rippers. |