<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.ubuntu-fr.org/extern.php?action=feed&amp;tid=1130121&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Forum Ubuntu-fr.org / assembleur]]></title>
		<link>http://forum.ubuntu-fr.org/viewtopic.php?id=1130121</link>
		<description><![CDATA[Les sujets les plus récents dans assembleur.]]></description>
		<lastBuildDate>Sat, 08 Dec 2012 20:50:51 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Réponse à&#160;:  assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11798671#p11798671</link>
			<description><![CDATA[<p>Bonsoir,</p><p>Dans un autre type de machine ;-) :</p><div class="codebox"><pre class="vscroll"><code>        ...
;       .line   48; &quot;test.c&quot;    if (i &lt; 0) {
        BSF     STATUS,0
        BANKSEL (_i + 1)
        BTFSS   (_i + 1),7
        BCF     STATUS,0
        BTFSS   STATUS,0
        GOTO    _00106_DS_
;       .line   49; &quot;test.c&quot;    i = -1;
        MOVLW   0xff
        MOVWF   _i
        MOVWF   (_i + 1)
        GOTO    _00107_DS_
_00106_DS_
;       .line   52; &quot;test.c&quot;    i = (i*i);
        BANKSEL _i
        MOVF    _i,W
        MOVWF   STK02
        MOVF    (_i + 1),W
        MOVWF   STK01
        MOVF    _i,W
        MOVWF   STK00
        MOVF    (_i + 1),W
        PAGESEL __mulint
        CALL    __mulint
        PAGESEL $
        BANKSEL _i
        MOVWF   (_i + 1)
        MOVF    STK00,W
        MOVWF   _i
_00107_DS_
        ...</code></pre></div><br /><p>Cordialement, A+<br />-- <br />Claudius</p>]]></description>
			<author><![CDATA[dummy@example.com (claudius01)]]></author>
			<pubDate>Sat, 08 Dec 2012 20:50:51 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11798671#p11798671</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782951#p11782951</link>
			<description><![CDATA[<p>merci tu peut me traduire celui la en assembleur <br />si i&lt;0&#160; &#160; &#160; &#160;alors&#160; i&lt;- (-1)<br />si non i=(i au carre) <br />acceptez mes remerciements</p>]]></description>
			<author><![CDATA[dummy@example.com (ilyestahabel)]]></author>
			<pubDate>Fri, 07 Dec 2012 14:29:52 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782951#p11782951</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782891#p11782891</link>
			<description><![CDATA[<div class="quotebox"><cite>ilyestahabel a écrit&#160;:</cite><blockquote><div><p>1le langage de programmation assembleur</p></div></blockquote></div><p>Il y a un assembleur par type de machine...</p><p>Par exemple en 8086 (syntaxe Intel-Microsoft):</p><div class="codebox"><pre><code>   mov ax,A
  cmp ax,0
  jl negatif
  add ax,B
  mov bx,0
  mov B,bx
  jmp store
:negatif
 sub ax,B
 mov bx,-1
:store
 mov A,ax
 mov B,bx</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (serged)]]></author>
			<pubDate>Fri, 07 Dec 2012 14:22:24 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782891#p11782891</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782411#p11782411</link>
			<description><![CDATA[<p>1le langage de programmation assembleur<br />2 oui c est un bon exercice</p>]]></description>
			<author><![CDATA[dummy@example.com (ilyestahabel)]]></author>
			<pubDate>Fri, 07 Dec 2012 13:32:59 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11782411#p11782411</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11780881#p11780881</link>
			<description><![CDATA[<p>quel type d&#039;assembleur? x86 ? ppc? arm?</p><p>ça ressemble bcp à un exercice, non?</p>]]></description>
			<author><![CDATA[dummy@example.com (telliam)]]></author>
			<pubDate>Fri, 07 Dec 2012 10:50:10 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11780881#p11780881</guid>
		</item>
		<item>
			<title><![CDATA[assembleur]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=11780711#p11780711</link>
			<description><![CDATA[<p>bonjour j ai un peut soussi avec cet algorithme que je veut le traduire en assmebleur<br />Si a&gt;0 alors a&lt;--a+b<br />b&lt;--0<br />sinon a&lt;--a-b<br />b&lt;--1<br />et merci.<br />&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;le signe (&lt;-- indique le reçois)</p>]]></description>
			<author><![CDATA[dummy@example.com (ilyestahabel)]]></author>
			<pubDate>Fri, 07 Dec 2012 10:28:51 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=11780711#p11780711</guid>
		</item>
	</channel>
</rss>
