<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.lang.nasm.general">
    <title>gmane.comp.lang.nasm.general</title>
    <link>http://blog.gmane.org/gmane.comp.lang.nasm.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/321"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/320"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/318"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/310"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/305"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/300"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/293"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/291"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/285"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/284"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/283"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/280"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/279"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/264"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.lang.nasm.general/260"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/321">
    <title>[Nasm-users] libraries</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/321</link>
    <description>&lt;pre&gt;Hello. I'm starting a project that will be written in assembly language. I had intended to use HLA, but I can't get on their mailing list, and I'm hesitant to commit to using HLA without live support --- that is why I'm considering NASM now.

What had impressed me about HLA was that it comes with a large library, and that programs can assemble for either Windows or Linux so long as the programs restrict themselves to using this library. Is there anything like that for NASM? Specifically, for console interface, file access and serial communication? It may be too complicated to support both Windows and Linux, in which case I will support Linux --- but it would be nice to support both.

Also, other than the Windows/Linux issue, I was impressed with HLA's library in general. Are there any libraries of NASM code available? I would be interested in basic data-structure support (lists, arrays, associative arrays, etc.), such as I provided in my Forth novice package:
http://www.forth.org/novice.html

Is there a repository of NASM code somewhere?

Does NASM work with any debugger, such as GDB?

Is NASM source-code available, and if so, is it BSD or GPL license? What language is it written in?

Thanks for your help --- Hugh
------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1_______________________________________________
Nasm-users mailing list
Nasm-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nasm-users
&lt;/pre&gt;</description>
    <dc:creator>Hugh Aguilar</dc:creator>
    <dc:date>2011-11-03T06:12:19</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/320">
    <title>[Nasm-users] Suggestion: Limit instruction set to specific CPU type</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/320</link>
    <description>&lt;pre&gt;Hi,

I would like to suggest to add a –cpu option to the command line flags of nasm (somewhat similar to GCCs –march option) where the user can specify the CPU type he is programming for. If the user uses an instruction that is not supported by the CPU, the assembler can warn about this. This can help to keep code running on old machines.

What do you think about this?


Philipp------------------------------------------------------------------------------
RSA(R) Conference 2012
Save $700 by Nov 18
Register now
http://p.sf.net/sfu/rsa-sfdev2dev1_______________________________________________
Nasm-users mailing list
Nasm-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nasm-users
&lt;/pre&gt;</description>
    <dc:creator>Philipp Kloke</dc:creator>
    <dc:date>2011-11-11T17:02:29</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/318">
    <title>[Nasm-users] linking nasm programs to windows libraries</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/318</link>
    <description>&lt;pre&gt;Hello all:
I am writing a couple nasm functions to test this out with, and have 
been experiencing a problem. I want to link my nasm program to 
user32.lib, which I have done, but when I use the microsoft visual 
studio link command with user32.lib, I still get told that MessageBoxA 
is undefined. How do I do this?

I am aware of alink, but it seems to be a work in progress and I'd 
rather just link to the normal libraries if I possibly can; help is 
appreciated.
Thanks in advance,

&lt;/pre&gt;</description>
    <dc:creator>Littlefield, Tyler</dc:creator>
    <dc:date>2011-08-11T14:12:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/310">
    <title>[Nasm-users] What debugger front end for Linux?</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/310</link>
    <description>&lt;pre&gt;Hi guys, I am trying to learn x86 assembly with NASM since it uses the less
hideous Intel syntax! However the debugger front end I tried doesn't seem to
recognize this format and I can't set breakpoints. Whoever is using NASM on
Linux can you explain your environment a bit, what tools should I be using
etc. for best results. Thanks guys.


------------------------------------------------------------------------------
Achieve unprecedented app performance and reliability
What every C/C++ and Fortran developer should know.
Learn how Intel has extended the reach of its next-generation tools
to help boost performance applications - inlcuding clusters.
http://p.sf.net/sfu/intel-dev2devmay
&lt;/pre&gt;</description>
    <dc:creator>Fritz Wuehler</dc:creator>
    <dc:date>2011-05-16T10:57:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/305">
    <title>[Nasm-users] please help</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/305</link>
    <description>&lt;pre&gt;i have ap orblem whenever i try to run it it shuts down instantly. It does
the same thing when i run a program in Dev C++, but that i can just type
system("PAUSE);
please help me
thanx
&lt;/pre&gt;</description>
    <dc:creator>kevin becker</dc:creator>
    <dc:date>2011-03-08T00:00:06</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/300">
    <title>[Nasm-users] Working with pointers</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/300</link>
    <description>&lt;pre&gt;hello all,
I have a quick question.
I have the following:
section .data
ptr dd 0
array times 100 db 0

Now, when I want to assign array to p, I can't mov it--how can I assign 
the pointer to point there? Last, is there a way to get the type of 
processor?
(32-64), as that will make a difference on the code in some places?

&lt;/pre&gt;</description>
    <dc:creator>Littlefield, Tyler</dc:creator>
    <dc:date>2010-12-17T06:27:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/293">
    <title>[Nasm-users] learning asm</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/293</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello all,
I'm looking for a few things, and maybe someone can help me out some.
I've been toying with asm for a while, but I'd really like to dive in.
One of my problems is proper information on what things like enter and
leave do, etc. Is there a good reference somewhere?
I'm also curious of the output of a .lst file, and how it's organized:
There don't seem to be column headers, so I'm having issues figuring out
what's what with my reader.
Also, are there some good nasm samples out there to play with? Iseen a
text editor, but that might just confuse me, then confuse me again.

- -- 
Thanks,
Tyler Littlefield
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJMtPOqAAoJELDPyrppriJP0EsH/A6D51h8OmLTBtmM6AHMG+ej
A7yKHn7GvjPqxqdxGzekJ0vZzN5reri/P2gY+D+7DyC3MTFNMqkAjKiNTcNutdy3
UtJEVvm3Nc4nT6skbDQr1BjCOX9vX2XF4/Tid7Ss26QRIv3sJlr+aFPzAMCgnCDQ
DO390LYqdasVmlQKyafAVASNZqwTnurCYTkcD4aoXMUYtrc+9j0wrEYtrVi2C0ma
9haac+C3+nAjFHtkWSaIOdSceE8XgAK7lsxUvNhdxcylVxUprqTnYzXl+XPQr3YG
Ff1R0i+zu9PF8mIN3GD27u7zPb4mbCwGAHv/KJO8PX5QgyaBIawwnmPOIzoULsQ=
=mlRw
-----END PGP SIGNATURE-----

------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 &amp;amp; L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
&lt;/pre&gt;</description>
    <dc:creator>Tyler Littlefield</dc:creator>
    <dc:date>2010-10-12T23:47:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/291">
    <title>[Nasm-users] nasm intermittently fails to assemble a file</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/291</link>
    <description>&lt;pre&gt;Hi, I am having a strange problem with nasm, which has me somewhat
baffled:

When building a specific project (Openssl 1.0.0a for Win64-amd64),
nasm 2.09.02 (and 2.08.02 and 2.08.01 too) fails to assemble one of the
files (x86_64_cpuid.asm) when run on one build machine, but not the
other.

Strangely, manually running the same nasm command with the same values
of all environment variables on the computer where it just failed,
produces the correct output, but running the build script always fails
on that same computer.

When nasm fails in that buildscript on that machine, it randomly
chooses between two different failure modes:

A (most frequent): nasm reports success (no messages and 0 exit code),
but the generated .obj file is empty (not 0-byte), containing no code,
data or symbols, just a valid .obj file header (This obviously leads
to a later linker error).

B (less frequent): nasm aborts claiming that all the local symbols
are undefined.

On the other build machine, nasm just works as expected for the same
files.

What could be causing this and how do I work around this?

P.S.
The machine in question is an automated build server which has no
trouble building millions of other lines of code (none of them with
nasm though).  It runs Win2003 server (i386), cross compiling for
multiple target architectures (including x86_64).

P.P.S
I am new to this list, hope my question is OK.

P.P.P.S
The error messages when failing in mode B are:

nasm -f win64 -DNEAR -Ox -g -o tmp32\x86_64cpuid.obj
                                                  tmp32\x86_64cpuid.asm
(above is one long line wrapped for e-mail)
tmp32\x86_64cpuid.asm:5: error: symbol `OPENSSL_cpuid_setup' undefined
tmp32\x86_64cpuid.asm:18: error: symbol `L$spin' undefined
tmp32\x86_64cpuid.asm:54: error: symbol `L$intel' undefined
tmp32\x86_64cpuid.asm:65: error: symbol `L$intel' undefined
tmp32\x86_64cpuid.asm:71: error: symbol `L$intel' undefined
tmp32\x86_64cpuid.asm:81: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:84: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:86: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:91: error: symbol `L$nocacheinfo' undefined
tmp32\x86_64cpuid.asm:104: error: symbol `L$notintel' undefined
tmp32\x86_64cpuid.asm:108: error: symbol `L$notintel' undefined
tmp32\x86_64cpuid.asm:112: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:115: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:120: error: symbol `L$done' undefined
tmp32\x86_64cpuid.asm:136: error: symbol `L$ot' undefined
tmp32\x86_64cpuid.asm:138: error: symbol `L$ret' undefined
tmp32\x86_64cpuid.asm:143: error: symbol `L$ittle' undefined
tmp32\x86_64cpuid.asm:149: error: symbol `L$aligned' undefined
tmp32\x86_64cpuid.asm:153: error: symbol `L$ot' undefined
tmp32\x86_64cpuid.asm:159: error: symbol `L$aligned' undefined
tmp32\x86_64cpuid.asm:161: error: symbol `L$ittle' undefined
NMAKE : fatal error U1077: '!NASM208DIR!\nasm.EXE' : return code '0x1'

(The symbols in question are defined on lines before they are used, the
errors report the lines where they are used).


------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 &amp;amp; L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb
&lt;/pre&gt;</description>
    <dc:creator>Jakob Bohm</dc:creator>
    <dc:date>2010-10-12T18:06:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/285">
    <title>[Nasm-users] Unable to generate IA64 object file</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/285</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2 &amp;amp; L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb_______________________________________________
Nasm-users mailing list
Nasm-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nasm-users
&lt;/pre&gt;</description>
    <dc:creator>Youngman, James</dc:creator>
    <dc:date>2010-10-05T16:42:18</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/284">
    <title>[Nasm-users] Feature request (ELF)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/284</link>
    <description>&lt;pre&gt;Hello
It would be nice to have dynamic linking support in ELF systems.
E.g to have the COMMON directive for all symbols and not only for variables.
Some keywords:
- elf shared libraries,
- linux LKMs (thread at http://forum.nasm.us/index.php?topic=841.0),
- OOP and runtime linking (modules).

bastl

------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
&lt;/pre&gt;</description>
    <dc:creator>S.Beck</dc:creator>
    <dc:date>2010-08-14T23:56:41</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/283">
    <title>[Nasm-users] Feature request (ELF)</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/283</link>
    <description>&lt;pre&gt;Hello
It would be nice to have dynamic linking support in ELF systems.
E.g to have the COMMON directive for all symbols and not only for variables.
Some keywords:
- elf shared libraries,
- linux LKMs (thread at http://forum.nasm.us/index.php?topic=841.0),
- OOP and runtime linking (modules).

bastl

------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
&lt;/pre&gt;</description>
    <dc:creator>bastl</dc:creator>
    <dc:date>2010-08-14T23:58:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/280">
    <title>[Nasm-users] From Gas to Nasm</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/280</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Download Intel&amp;amp;#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev_______________________________________________
Nasm-users mailing list
Nasm-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nasm-users
&lt;/pre&gt;</description>
    <dc:creator>Paul Procacci</dc:creator>
    <dc:date>2010-04-05T00:32:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/279">
    <title>[Nasm-users] Hello and a small contrib</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/279</link>
    <description>&lt;pre&gt;------------------------------------------------------------------------------
Download Intel&amp;amp;#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev_______________________________________________
Nasm-users mailing list
Nasm-users&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nasm-users
&lt;/pre&gt;</description>
    <dc:creator>Fabio Fornaro</dc:creator>
    <dc:date>2010-03-17T13:21:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/264">
    <title>[Nasm-users] can't write argv[0] on stdout</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/264</link>
    <description>&lt;pre&gt;Hi all,

i want to write 3 bytes of argv[0] on stdout but it doesn't work. 
Return code -14 (EFAULT Bad address). Am i missing something here? 

System is archlinux 2009.08 x86_64 kernel 2.6.31-rc6 
nasm 2.05.01 Binutils 2.19.1.20090418



stdoutequ1
writeequ4
exitequ1

section .text
global_start
_start:
poprax; rax = argc
poprax; rax = argv[0]

movrdx,3; write 3 bytes
movrcx,rax; rcx = rax = argv[0]
movrbx,stdout
movrax,write
int0x80

movrbx,0
movrax,exit
int0x80




------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
&lt;/pre&gt;</description>
    <dc:creator>Holger Hanrath</dc:creator>
    <dc:date>2009-08-18T14:34:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.lang.nasm.general/260">
    <title>[Nasm-users] Setting/Clearing OF</title>
    <link>http://comments.gmane.org/gmane.comp.lang.nasm.general/260</link>
    <description>&lt;pre&gt;
Hi,

How do I set or clear the overflow flag? I can save it easily enough, but I don't know how to set or clear it. This is for part of a handler for animation scripts for a Win32 game.

;-------------------------------------------------------------------------------
;    void __declspec(naked) __stdcall SetCurrentUnitExFlags(void) {
SetCurrentUnitExFlags:
    lahf
    mov   CL, AH
 
    ; Bit 1 is already set, so if OF is set, do nothing
    jo    .SetConditionFlags
    ; Clear bit 1
    btr   CL, 1
.SetConditionFlags
    call  GetCurrentUnitID
    imul  EAX, UnitEx.Size
    mov   byte [ExtendedUnitNode + EAX + UnitEx.ConditionFlags], CL
    ret
;    }

;-------------------------------------------------------------------------------
;    void __declspec(naked) __stdcall GetCurrentUnitExFlags(void) {
GetCurrentUnitExFlags:
    call  GetCurrentUnitID
    imul  EAX, UnitEx.Size
    mov   AH, byte [ExtendedUnitNode + EAX + UnitEx.ConditionFlags]
    bts   AH, 1
    jnc   .BitNotSet
    
    ; How do I set OF?
    
    lahf
    ret
    
.BitNotSet:

    ; How do I clear OF?
    
    lahf
    ret
;    }


Thank you for your time
Robert

--------------------------------------------------------------------------------
Robert Alegrid
RMIT University
Student #3164658
BP-079 Physics
BP-083 Mathematics


_________________________________________________________________
View photos of singles in your area Click Here
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fdating%2Eninemsn%2Ecom%2Eau%2Fsearch%2Fsearch%2Easpx%3Fexec%3Dgo%26tp%3Dq%26gc%3D2%26tr%3D1%26lage%3D18%26uage%3D55%26cl%3D14%26sl%3D0%26dist%3D50%26po%3D1%26do%3D2%26trackingid%3D1046138%26r2s%3D1&amp;amp;_t=773166090&amp;amp;_r=Hotmail_Endtext&amp;amp;_m=EXT
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
&lt;/pre&gt;</description>
    <dc:creator>Robert Alegrid</dc:creator>
    <dc:date>2009-08-10T23:32:34</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.nasm.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.nasm.general</link>
  </textinput>
</rdf:RDF>

