<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SudokusWeb to asm!</title>
	<atom:link href="http://borja.wordpress.com/2008/05/11/sudokusweb-to-asm/feed/" rel="self" type="application/rss+xml" />
	<link>http://borja.wordpress.com/2008/05/11/sudokusweb-to-asm/</link>
	<description>Just another boring blog</description>
	<lastBuildDate>Fri, 19 Sep 2008 10:36:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: geus</title>
		<link>http://borja.wordpress.com/2008/05/11/sudokusweb-to-asm/#comment-27</link>
		<dc:creator>geus</dc:creator>
		<pubDate>Sat, 24 May 2008 13:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://borja.wordpress.com/?p=27#comment-27</guid>
		<description>Absolutely.

I&#039;m waiting your next post. ;-)</description>
		<content:encoded><![CDATA[<p>Absolutely.</p>
<p>I&#8217;m waiting your next post. ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iambmf</title>
		<link>http://borja.wordpress.com/2008/05/11/sudokusweb-to-asm/#comment-26</link>
		<dc:creator>iambmf</dc:creator>
		<pubDate>Sun, 18 May 2008 17:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://borja.wordpress.com/?p=27#comment-26</guid>
		<description>Hey, thanks. =)

I&#039;ll give you some information about BSF and BCF:

BSF f,b (Bit Set f, sets the bit &#039;b&#039; in register &#039;f&#039;)
BCF f,b (Bit Clear f, clears the bit &#039;b&#039; in register &#039;f&#039;)

The STATUS register has two bits (RP1, RP0) that select which bank we can access:
RP1-RP0-&gt;Bank
 0     0   -&gt; 0
 0     1   -&gt; 1
 1     0   -&gt; 2
 1     1   -&gt; 3

In that code example you pasted, each block of two lines is setting the bank to 0, then 1, then 2. Finally, it&#039;s set back to bank 0.

Hope that makes it clearer. =)</description>
		<content:encoded><![CDATA[<p>Hey, thanks. =)</p>
<p>I&#8217;ll give you some information about BSF and BCF:</p>
<p>BSF f,b (Bit Set f, sets the bit &#8216;b&#8217; in register &#8216;f&#8217;)<br />
BCF f,b (Bit Clear f, clears the bit &#8216;b&#8217; in register &#8216;f&#8217;)</p>
<p>The STATUS register has two bits (RP1, RP0) that select which bank we can access:<br />
RP1-RP0-&gt;Bank<br />
 0     0   -&gt; 0<br />
 0     1   -&gt; 1<br />
 1     0   -&gt; 2<br />
 1     1   -&gt; 3</p>
<p>In that code example you pasted, each block of two lines is setting the bank to 0, then 1, then 2. Finally, it&#8217;s set back to bank 0.</p>
<p>Hope that makes it clearer. =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pablo</title>
		<link>http://borja.wordpress.com/2008/05/11/sudokusweb-to-asm/#comment-25</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Sun, 18 May 2008 01:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://borja.wordpress.com/?p=27#comment-25</guid>
		<description>Cool.
Very good point that GD library to scan numbers from a sudoku image.

What does exactly instructions BSF and BCF? 
I see that it is for selecting banks, do not? but I haven&#039;t found any logic in how you use them.

		BCF STATUS,RP0               
		BCF STATUS,RP1
               ; first block
		BSF STATUS,RP0
		BCF STATUS,RP1
               ;second block
		BSF STATUS,RP1
		BCF STATUS,RP0
               ;third block
               BCF STATUS,RP0
		BCF STATUS,RP1

Regards.</description>
		<content:encoded><![CDATA[<p>Cool.<br />
Very good point that GD library to scan numbers from a sudoku image.</p>
<p>What does exactly instructions BSF and BCF?<br />
I see that it is for selecting banks, do not? but I haven&#8217;t found any logic in how you use them.</p>
<p>		BCF STATUS,RP0<br />
		BCF STATUS,RP1<br />
               ; first block<br />
		BSF STATUS,RP0<br />
		BCF STATUS,RP1<br />
               ;second block<br />
		BSF STATUS,RP1<br />
		BCF STATUS,RP0<br />
               ;third block<br />
               BCF STATUS,RP0<br />
		BCF STATUS,RP1</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
