On Mar 13, 8:19 am, Frank Kotler <spamt...@[EMAIL PROTECTED]
> wrote:
>
> r0, r1, r2... are used outside of the x86 world, including x86-64, s0
> sounds like Herbert to me. :) If it *is* his syntax you're seeing, his
> assembler (Daniela/Windela/Lindela - I think the original name
> translates to "the other assembler") is available, plus he's written a
> set of macros that will allow you to write something similar to his
> preferred syntax, and assemble it with Nasm. I'm not sure I see the
> point of this - Lindela works fine, if you wanna do it that way - but it
> shows that you can design your own custom syntax, within limits.
>
> Herbert's syntax looks like so:
>
> atoi1: move.l #result,r6
> move.l #size,r2
> eor.l r0,r0
> rep_r2 move.l r0,(r6)+-{s1}
>
> move.l #10,r6
> _20: movu.bl (r3),r2
> inc.l r3
> cmp.b #'9',r2
> bhi.l _done
> sub.b #'0',r2
> bcs.l _done
> ...
>
> If that's the syntax you're interested in, the manual's in English,
> although the assembler yells at me in German if I make a mistake.
>
> ftp://137.193.64.130/pub/assembler/windela.zip
>
This is just a notice that I have successfully 'mirrored' Lindela to
Canonical's Launchpad:
http://launchpad.net/lindela
Nathan.


|