<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[ChipMusic.org - SID analyzer?]]></title>
		<link>https://chipmusic.org/forums/topic/6961/sid-analyzer/</link>
		<description><![CDATA[The most recent posts in SID analyzer?.]]></description>
		<lastBuildDate>Mon, 07 May 2012 00:31:13 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/104739/#p104739</link>
			<description><![CDATA[<b><i>iLKke says:</i></b><p>Cheers, 4mat. <br />Sadly, last time I looked into assembler it was in like 94. Will figure something out.</p>]]></description>
			<pubDate>Mon, 07 May 2012 00:31:13 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/104739/#p104739</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/104212/#p104212</link>
			<description><![CDATA[<b><i>4mat says:</i></b><p>Was intrigued to find out how this is done so here&#039;s a little bit of code.&nbsp; I&#039;m not sure you&#039;ll get perfect playback (due to the slight adsr changes when setting registers in a different order) but it at least gives you the data for single vblank songs.</p><div class="codebox"><pre><code>sei
; init your song driver wherever it is, usually $1000
jsr $1000 

loop

; wait for raster
raster
lda $d012
cmp #$fe
bne raster

; set $d000 area to ram so sid data can be read

lda #$34
sta $01

; call a vblank of your song. (usually $1003)

jsr $1003

; grab the registers and store them somewhere, in this case $9000
; and bung them on screen so we can see the raw data.

ldy #$00
registers
lda $d400,y
sta $9000,y
sta $0400,y
iny
cpy #$20
bne registers

; set sid back to usual so we can write to it.

lda #$35
sta $01

; write registers back to the sid chip, doing that backwards seems to give more accurate playback.

ldy #$1f
registers2
lda $9000,y
sta $d400,y
dey
bpl registers2

jmp loop</code></pre></div>]]></description>
			<pubDate>Thu, 03 May 2012 21:59:01 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/104212/#p104212</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/104123/#p104123</link>
			<description><![CDATA[<b><i>akira^8GB says:</i></b><p>I remembereed now.<br />SIDPlay for OSX shows register info:<br /><a class="postimg" href="http://www.sidmusic.org/sidplay/mac/images/screenshot1.png" title="http://www.sidmusic.org/sidplay/mac/images/screenshot1.png" id="forum_image_22973088"><img src="http://www.sidmusic.org/sidplay/mac/images/screenshot1.png" /></a></p><br /><br /><p>The <a href="http://www.twinbirds.com/sidplay/sidplay4-source.zip" target="_blank">sourcecode is available</a> so maybe you can figure out that part to put it back in sidplay for Windows.</p>]]></description>
			<pubDate>Thu, 03 May 2012 12:12:41 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/104123/#p104123</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/104099/#p104099</link>
			<description><![CDATA[<b><i>goto80 says:</i></b><p>Ah, okay. There are some players for .SID-files too. I don&#039;t know much about them. <br />Can&#039;t test atm, but perhaps this? <a href="http://csdb.dk/release/?id=101736" target="_blank">http://csdb.dk/release/?id=101736</a></p>]]></description>
			<pubDate>Thu, 03 May 2012 08:20:48 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/104099/#p104099</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/104083/#p104083</link>
			<description><![CDATA[<b><i>iLKke says:</i></b><div class="quotebox"><cite>goto80 wrote:</cite><blockquote><p>There are many native C64-players that have similar features, but most of them are a bit picky with what music you give them iirc. One example is JCH&#039;s Delux Driver: <a href="http://noname.c64.org/csdb/release/?id=21335" target="_blank">http://noname.c64.org/csdb/release/?id=21335</a></p></blockquote></div><p>Thing about c64 players is that they usually want .PRG files, correct?<br />That means I couldn&#039;t feed them my HVSC and learn from the pretty registerizer.</p>]]></description>
			<pubDate>Thu, 03 May 2012 05:56:52 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/104083/#p104083</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/103914/#p103914</link>
			<description><![CDATA[<b><i>akira^8GB says:</i></b><p>I never heard of a standalone of this type, but since yu&#039;d have to hardcode the SID inside the routine anyway, that means you need some coding skills, and if you have them, it should be kinda easy to do it.</p><p>There was a version of SIDPlay that showed similar info, though. Can&#039;t find it in it anymore though. Or maybe it was a different program? Hmm... what I think of was showing you register info. it&#039;s not as nicely looking as this, but you basically get the same information.</p>]]></description>
			<pubDate>Wed, 02 May 2012 15:29:21 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/103914/#p103914</guid>
		</item>
		<item>
			<title><![CDATA[Re: SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/103913/#p103913</link>
			<description><![CDATA[<b><i>goto80 says:</i></b><p>There are many native C64-players that have similar features, but most of them are a bit picky with what music you give them iirc. One example is JCH&#039;s Delux Driver: <a href="http://noname.c64.org/csdb/release/?id=21335" target="_blank">http://noname.c64.org/csdb/release/?id=21335</a></p>]]></description>
			<pubDate>Wed, 02 May 2012 15:27:41 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/103913/#p103913</guid>
		</item>
		<item>
			<title><![CDATA[SID analyzer?]]></title>
			<link>https://chipmusic.org/forums/post/103896/#p103896</link>
			<description><![CDATA[<b><i>iLKke says:</i></b><p>Is there something similar to the analyzer part of &#039;10 Years of HVSC&#039; music disk?<br /><a href="http://noname.c64.org/csdb/release/?id=44014" target="_blank">http://noname.c64.org/csdb/release/?id=44014</a><br /><a class="postimg" href="http://noname.c64.org/csdb/gfx/releases/44000/44014.gif" title="http://noname.c64.org/csdb/gfx/releases/44000/44014.gif" id="forum_image_99834142"><img src="http://noname.c64.org/csdb/gfx/releases/44000/44014.gif" /></a></p><p>(if you wait a little you&#039;ll see it pop up briefly in the animgif)</p><p>It can be for PC or for C64 (or smartphone or whatever), as long as it can load .sid files.<br />Closest thing I&#039;ve found so far is the oscilloscope display of JSIDPlay, but it doesn&#039;t come close in terms of functionality</p><p>I&#039;d be thankful for any suggestions.</p>]]></description>
			<pubDate>Wed, 02 May 2012 12:36:11 +0000</pubDate>
			<guid>https://chipmusic.org/forums/post/103896/#p103896</guid>
		</item>
	</channel>
</rss>
