<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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>Lukis Home &#187; Perl</title>
	<atom:link href="http://humbels.com/index.php/category/software/perl-software/feed" rel="self" type="application/rss+xml" />
	<link>http://humbels.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Thu, 17 Dec 2009 16:54:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Inline::ASM ???</title>
		<link>http://humbels.com/index.php/22</link>
		<comments>http://humbels.com/index.php/22#comments</comments>
		<pubDate>Tue, 07 Oct 2008 07:59:39 +0000</pubDate>
		<dc:creator>Luki</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[assembler]]></category>

		<category><![CDATA[perl]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[useless]]></category>

		<guid isPermaLink="false">http://humbels.com/?p=22</guid>
		<description><![CDATA[Inline Assembler in Perl, geht nicht? Geht doch:

use Inline C;
$a = asmadd(6,19);
print &#8220;$a\n&#8221;;
__END__
__C__
int asmadd( int a, int b){
asm( &#8220;addl %%ebx, %%eax;\n&#8221;
: &#8220;=a&#8221; (a)
: &#8220;a&#8221;  (a), &#8220;b&#8221; (b)
);
return a;
}
]]></description>
			<content:encoded><![CDATA[<p>Inline Assembler in Perl, geht nicht? Geht doch:</p>
<blockquote style="background-color: #333333; color:#ffffff;"><p>
use Inline C;</p>
<p>$a = asmadd(6,19);<br />
print &#8220;$a\n&#8221;;</p>
<p>__END__<br />
__C__</p>
<p>int asmadd( int a, int b){<br />
asm( &#8220;addl %%ebx, %%eax;\n&#8221;<br />
: &#8220;=a&#8221; (a)<br />
: &#8220;a&#8221;  (a), &#8220;b&#8221; (b)<br />
);<br />
return a;</p>
<p>}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://humbels.com/index.php/22/feed</wfw:commentRss>
		</item>
	</channel>
</rss>

