Built-in routines

Discuss about beta versions of mikroPascal compiler.
Post Reply
Author
Message
janni
Posts: 5373
Joined: 18 Feb 2006 13:17
Contact:

Built-in routines

#1 Post by janni » 22 Oct 2007 16:07

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...).

User avatar
zristic
mikroElektronika team
Posts: 6608
Joined: 03 Aug 2004 12:59
Contact:

Re: Built-in routines

#2 Post by zristic » 23 Oct 2007 09:05

Thanks for the tips, we will fix what is possible.

Post Reply

Return to “mikroPascal Beta testing”