<?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/"
		>
<channel>
	<title>Comentarios en: Si no fuera por C&#8230;</title>
	<atom:link href="http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/</link>
	<description>Mundo geek, bitácora sobre todo lo geek: software, gadgets, tecnología, internet, ...</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:38:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Por: Pablo Perdomo</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-318463</link>
		<dc:creator>Pablo Perdomo</dc:creator>
		<pubDate>Tue, 02 Feb 2010 04:16:43 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-318463</guid>
		<description>Jaja. Yo tampoco note de primera la falta de las &#039;c&#039;.
Estoy tan acostumbrado al autocompletar que mi mente completa las palabras sola. El unico que note fue el de COBOL y casi que poste para decir que estaba mal. Jaja.

Saludos.</description>
		<content:encoded><![CDATA[<p>Jaja. Yo tampoco note de primera la falta de las &#8216;c&#8217;.<br />
Estoy tan acostumbrado al autocompletar que mi mente completa las palabras sola. El unico que note fue el de COBOL y casi que poste para decir que estaba mal. Jaja.</p>
<p>Saludos.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: alexd</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-313230</link>
		<dc:creator>alexd</dc:creator>
		<pubDate>Fri, 04 Dec 2009 12:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-313230</guid>
		<description>omg chiste facil</description>
		<content:encoded><![CDATA[<p>omg chiste facil</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Si no fuera por C&#8230; &#171; Experiencias de un informático&#8230;</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-304033</link>
		<dc:creator>Si no fuera por C&#8230; &#171; Experiencias de un informático&#8230;</dc:creator>
		<pubDate>Wed, 12 Aug 2009 03:49:04 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-304033</guid>
		<description>[...] Visto en MundoGeek [...]</description>
		<content:encoded><![CDATA[<p>[...] Visto en MundoGeek [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Alberto</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303508</link>
		<dc:creator>Alberto</dc:creator>
		<pubDate>Thu, 06 Aug 2009 23:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303508</guid>
		<description>Acá les muestro lo que está abajo de C! 
asm! puro.
name &quot;Hola mundo&quot;  

org  100h

mov ax, 1003h  
mov bx, 0        
int 10h


mov ax, 1234h      
mov dx, 0x1234     
mov ax, 1234       
mov ax, 0ABCDh     
mov dx, 0xABCD     
mov dl, TeSt1      
jmp n              
test1 db 20h      
n:
add dl, dl         
inc dl             
mov ah, 2          
int 21h            
mov dl, 1          
int 21h            
mov al, 11100101b  
xor al, 1111_1110b 

mov ax, 3
int 10h
mov ax, 1003h
mov bx, 0
int 10h
mov     ax, 0b800h
mov     ds,ax
mov [02h], &#039;H&#039;
mov [04h], &#039;o&#039;
mov [06h], &#039;l&#039;
mov [08h], &#039;a&#039;
mov [0ah], &#039; &#039;
mov [0ch], &#039;M&#039;
mov [0eh], &#039;u&#039;
mov [10h], &#039;n&#039;
mov [12h], &#039;d&#039;
mov [14h], &#039;o&#039;


mov cx, 10
mov di, 03h
c: mov [di] ,11101100b
    add di, 2
    loop c
mov ah, 0
int 16h
ret


mov dx, 0705h      
mov bx, 0          
mov bl, 10011111b  
mov cx, msg_size   
mov al, 01b        
mov bp, offset msg
mov ah, 13h        
int 10h            

mov ah, 0          
int 10110b         

ret   

msg         db &quot;Aprete aguna tecla...&quot;
msg_size =  $ - offset msg

(No por nada existe C)</description>
		<content:encoded><![CDATA[<p>Acá les muestro lo que está abajo de C!<br />
asm! puro.<br />
name &#8220;Hola mundo&#8221;  </p>
<p>org  100h</p>
<p>mov ax, 1003h<br />
mov bx, 0<br />
int 10h</p>
<p>mov ax, 1234h<br />
mov dx, 0&#215;1234<br />
mov ax, 1234<br />
mov ax, 0ABCDh<br />
mov dx, 0xABCD<br />
mov dl, TeSt1<br />
jmp n<br />
test1 db 20h<br />
n:<br />
add dl, dl<br />
inc dl<br />
mov ah, 2<br />
int 21h<br />
mov dl, 1<br />
int 21h<br />
mov al, 11100101b<br />
xor al, 1111_1110b </p>
<p>mov ax, 3<br />
int 10h<br />
mov ax, 1003h<br />
mov bx, 0<br />
int 10h<br />
mov     ax, 0b800h<br />
mov     ds,ax<br />
mov [02h], &#8216;H&#8217;<br />
mov [04h], &#8216;o&#8217;<br />
mov [06h], &#8216;l&#8217;<br />
mov [08h], &#8216;a&#8217;<br />
mov [0ah], &#8216; &#8216;<br />
mov [0ch], &#8216;M&#8217;<br />
mov [0eh], &#8216;u&#8217;<br />
mov [10h], &#8216;n&#8217;<br />
mov [12h], &#8216;d&#8217;<br />
mov [14h], &#8216;o&#8217;</p>
<p>mov cx, 10<br />
mov di, 03h<br />
c: mov [di] ,11101100b<br />
    add di, 2<br />
    loop c<br />
mov ah, 0<br />
int 16h<br />
ret</p>
<p>mov dx, 0705h<br />
mov bx, 0<br />
mov bl, 10011111b<br />
mov cx, msg_size<br />
mov al, 01b<br />
mov bp, offset msg<br />
mov ah, 13h<br />
int 10h            </p>
<p>mov ah, 0<br />
int 10110b         </p>
<p>ret   </p>
<p>msg         db &#8220;Aprete aguna tecla&#8230;&#8221;<br />
msg_size =  $ &#8211; offset msg</p>
<p>(No por nada existe C)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: DoodoM</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303485</link>
		<dc:creator>DoodoM</dc:creator>
		<pubDate>Thu, 06 Aug 2009 09:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303485</guid>
		<description>Si no fuera por C habría muchos más programadores abrones.</description>
		<content:encoded><![CDATA[<p>Si no fuera por C habría muchos más programadores abrones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: diego \ Durmiendo Afuera</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303381</link>
		<dc:creator>diego \ Durmiendo Afuera</dc:creator>
		<pubDate>Wed, 05 Aug 2009 05:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303381</guid>
		<description>me encanto jaja !</description>
		<content:encoded><![CDATA[<p>me encanto jaja !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Angelverde</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303266</link>
		<dc:creator>Angelverde</dc:creator>
		<pubDate>Mon, 03 Aug 2009 17:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303266</guid>
		<description>O nadie entiende o estan muy metidos en su filosofia.

La &#039;gracia&#039; esta en que le faltan las &#039;c&#039; a los lenguajes que mencionan basi(c) (c)obol y pas(c)al.</description>
		<content:encoded><![CDATA[<p>O nadie entiende o estan muy metidos en su filosofia.</p>
<p>La &#8216;gracia&#8217; esta en que le faltan las &#8216;c&#8217; a los lenguajes que mencionan basi(c) (c)obol y pas(c)al.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Por esto tenemos C &#124; 2bGeek</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303252</link>
		<dc:creator>Por esto tenemos C &#124; 2bGeek</dc:creator>
		<pubDate>Mon, 03 Aug 2009 07:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303252</guid>
		<description>[...] Lo vi en &#124; Mundo Geek [...]</description>
		<content:encoded><![CDATA[<p>[...] Lo vi en | Mundo Geek [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: YakiBoo &#187; Si no fuera por C&#8230;</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303246</link>
		<dc:creator>YakiBoo &#187; Si no fuera por C&#8230;</dc:creator>
		<pubDate>Sun, 02 Aug 2009 22:29:28 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303246</guid>
		<description>[...] (Visto aquí) [...]</description>
		<content:encoded><![CDATA[<p>[...] (Visto aquí) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: alejandro</title>
		<link>http://mundogeek.net/archivos/2009/08/01/si-no-fuera-por-c/#comment-303245</link>
		<dc:creator>alejandro</dc:creator>
		<pubDate>Sun, 02 Aug 2009 20:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://mundogeek.net/?p=3708#comment-303245</guid>
		<description>noooo jajajaja estubo bueno..!</description>
		<content:encoded><![CDATA[<p>noooo jajajaja estubo bueno..!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

