realstar wrote:
================================================
He probably means he is using Cybergraphics5 on a
Pegasos system under MorphOS which features the
latest version of CyberGrafx and is an Amiga
compatible system that runs on PPC.
============================================
that makes sense, I remembered Kronos saying
he had a Pegasos in some recent thread.
But why did he say WOS, or was that a typo?
(did he mean MOS??)
=========================================
See this:
http://www.pegasosppc.comThey are a great alternative to the classic
Amiga systems and there exists a very active
developer community too. I also own one of
these machines and would recommend testing
your software on the Pegasos since it features
great compatibility with classic 68K software
and native PPC MorphOS programs.
===============================================
Pegasos are doing all the things we wish Amiga Inc
were doing and the boss is actually interested
in desktop Amigas!
No boss of Commodore-Amiga ever used Amiga's
what's the world coming to!
I remember David Pleasance of Commodore UK launching
an in house initiative to make staff familiarize
themselves with using Amigas!
Also OS and hardware are both being done in-house
which used to be one of Amiga's unique-selling-points.
I wish Eyetech were a bit more generous acknowledging
Pegasos's merits, eg the April chip thing proved
their ability to improvise around an external problem.
Everything Pegasos does is wrong by default according
to Eyetech.
----------------------------------
As long as "cybergraphics.library" is present
it should be alright. cybergraphics forces one to
to write code more cleanly as the implementation
details of the library really are hidden.
Thus code has a much better chance of porting than with
AGA.
It will be interesting to see whether the program
functions as-is on Pegasos.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
QUESTION:
Does Pegasos emulate the entire 68k series
or just eg 68020?
Ditto Amithlon?
Presumably MMU code will cause probs??
As long as it emulates the output of gcc2.95.3-4
then its OK.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
As JIT-compilation is 75% of native speed its almost
not worth doing a separate recompile for G3 upwards:
pages are going to render like instantly on a G3,
the bottleneck is going to be the printer speed.
ie if you made the prog twice as fast on a G3
printing a page might take 10 seconds instead of 11!
(probably)
:I could look into doing a separate recompile both for
Pegasos and A1, however this should wait till after the
release to avoid further delays.
BTW 3 problems have decided to emerge right now with
my port: I noticed some very minor problem: resolution
of one page of a pdf file was not getting reset to
default values for the next page when it was supposed to.
I corrected this, however this led to 2 new probs:
Ghostscript decided to decrease the width of its bitmap
by 1 pixel without telling me,
this has thrown my code which always checks
widths before memory transfers in order to avoid
memory trashing. Also the above correction is
causing a final phantom page to happen resulting
in an abandoned viewer screen on program exit.
:As I write this I have such an abandoned (1-bitplane)
screen in the background. resource tracking would have
zapped that abandoned viewer. One can always hack
resource tracking though by putting in an extra layer
above OS-calls...
So I am in a panic rushing around trying to fix the
problem. I can see a quick fix by putting in an extra
field which will get set to prevent the phantom page
from opening! The bitmap shrinkage can be fixed by
making some temporary array grow by at least 1 byte.
:I will get this recompile to the volunteers today
I promise!!
(By today I mean today UK time, which may be tomorrow or
yesterday by the testers time, one tester is in Mexico
and another in Australia so normal meanings of time
have gone out the window. So dont try to sue me for
lying till another 3 hours have passed.)
Each change to the prog eats up another 25 minutes:
5 minutes to recompile the source file and 20 minutes
to relink the prog.
aaaarggggghhhhh!
whoosh777