"Aaron Ardiri" <[EMAIL PROTECTED]> wrote in message
news:52611@palm-dev-forum...
>
> > Everything identified by Jun-Kiat as new in CW7 Palm would appear to
be
> > included the latest Palm SDK. What exactly am I missing?
>
>   inline assembly? :) [within a function]

Hmmm, as best I can tell, this works fine in CW Palm 7:

void my_function(void)
{
    Int32 x, y = 10, z = 4;

    for (x = 0; x < 5; ++x)
    {
        asm
        {
            move.l y,d0
            move.l z,d1
            add.l d0,d1
            move.l d1,y
        }
    }
}

What kind of inline assembly were you looking for?  (Or, were you
stating that CW Palm 6 wasn't able to do this, which is true since that
compiler version only offered function-level assembly).



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/tech/support/forums/

Reply via email to