developing on a mac

Started by Devine, October 18, 2016, 09:31:39 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Devine

Hi,
I'd like to play with Amos but I'd like to use a modern text editor. Is it somehow possible to run Amos from ps-uae and point to my mac's hd? like a mapped drive?

Or perhaps I could compile also on the Mac and then run the executable under ps-uae ?thanks

SamuraiCrow

Amos source is stored in a tokenized format.  It's not raw ASCII text.  Binary ABK files can be embedded in it also.

Hungry Horace

Exactly this ^^

You should have not problem mapping and Amiga HD to the "real" OSX drive (I have done the same and in fact use a Dropbox folder so that my projects are constantly backed up)

.... However , you'd have to constantly covert to/from ascii within Amos itself if you want to type in code using an OS X editor.

Even then, you won't be able to take advantage of the Amos tokeniser feature (that helps greatly in cleaning up syntax etc)
Quote from: KillerGorillabecause winuae is made of code and your amiga is made of stuff


Mia

APCmp can do a number of things on its own but it isn't very well documented.

you can test the syntax and get the same error message back that you get in the editor including the line number.

you can compile directly an ASCII file.

you can parse only an ASCII file into an AMOS file

to compile the command line needs:

apcmp FROM <filename> TYPE=1 NOERR NOLONG NOLIB NODEF NOWB TEMP="Ram:" LIBS="AMOS_Pro:APSystem" TO "Ram:<filename>"

Lonewolf10


Quote from: Mia on October 20, 2016, 09:35:56 PM
APCmp can do a number of things on its own but it isn't very well documented.

Cool.

How did you find this out and where is it documented?

Mia


Lonewolf10

Quote from: Mia on November 03, 2016, 08:44:57 PM
It's in the source code  8)

Oh, ok.

I downloaded the source code as soon as it was released, but haven't gotten around to examining it yet :(

Thanks for the information :)