Page 1 of 1

Built-in routines

Posted: 22 Oct 2007 16:07
by janni
The OrgAll command is a nice feature :D . Only the help is completely misleading - both about where the 'call' should be placed, and its form. The example:

Code: Select all

  ...
    OrgAll 0x1234;
    begin // main program starts here
    end. 
Should be replaced by

Code: Select all

    ...
    begin // main program starts here
      OrgAll(0x1234);
      ...
    end.
Another thing - swap is actually a routine, not in-line code (what a pity...).

Re: Built-in routines

Posted: 23 Oct 2007 09:05
by zristic
Thanks for the tips, we will fix what is possible.