amiga.org
     
iconAll times are GMT -6. The time now is 08:04 AM. | Welcome to Forum, please register to access all of our features.

» Amiga.org » Blogs » trekiej » PortablE

Rate this Entry

PortablE

Submit "PortablE" to Digg Submit "PortablE" to del.icio.us Submit "PortablE" to StumbleUpon Submit "PortablE" to Google
Posted 08-23-2011 at 06:57 PM by trekiej

Installed PortablE to this machine, which is an Amd 2800+ and WinXP.
The install for PortablE went well but MinGW did not get its path added to Path.
When I made a correction to Path it found the libgmp-10.dll it needed in the MinGW directory.

PEGCC works now because of this.
Posted in Uncategorized
Views 1058 Comments 2 Edit Tags Email Blog Entry
« Prev     Main     Next »
Total Comments 2

Comments

  1. Old Comment
    trekiej's Avatar
    I have been using MinGW for a little while.
    I have gotten into Pointers.
    I have been able to pass the address of an Object (struct time clock; struct time *Clock_PTR; Clock_PTR = &time;/* If I remember corectly*/) to a Function.
    I hope to make some basic Emulator using Pointers.
    I keep falling back to C. It will be text based for now.

    I want to keep working on E and PortablE and hope it becomes more popular.
    Posted 08-31-2011 at 12:14 PM by trekiej trekiej is offline
  2. Old Comment
    trekiej's Avatar
    PROC main()
    Def a,b.c /* put variables here */
    print("Hello")
    world()
    blankline()/*carriage return \n */
    ENDPROC
    /*----Functions----*/
    PROC world()
    print("World")
    ENDPROC
    /* ----*/
    PROC blankline()
    print("\n")
    ENDPROC
    Posted 08-31-2011 at 01:57 PM by trekiej trekiej is offline
    Updated 09-22-2011 at 12:44 PM by trekiej (addition)