[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GNO...
- Subject: Re: GNO...
- From: "mdj" <mdj.mdj@gmail.com>
- Date: 23 Jan 2007 04:19:34 -0800
- Complaints-to: groups-abuse@google.com
- In-reply-to: <dRTsh.201$zO7.24@newsfe06.lga>
- Injection-info: k78g2000cwa.googlegroups.com; posting-host=203.206.121.141; posting-account=W_jMEA0AAAAZdNaersJnc-7Hjv-SIC8Q
- Newsgroups: comp.sys.apple2
- Organization: http://groups.google.com
- References: <dRTsh.201$zO7.24@newsfe06.lga>
- User-agent: G2/1.0
- Xref: g2news2.google.com comp.sys.apple2:16721
Rob Greene wrote:
> 1. Do the Merlin tools work from the command line? How? I see how to
> get MD Basic working. Is there any way to run a BASIC program from from
> GNO?
You have to have ORCA/C I'm afraid...
One interesting alternative would be to see if (or modify) the cc65
cross compiler to compile itself. If you can do that, then combined
with an OMF linker (which you'd have to write) you'd then have an open
solution to the problem. Now, I'm not suggesting cc65 will compile
itself, but it did once run on the Atari ST so the machine size it was
designed for is at least similar.
> 2. What are the real memory requirements? I'm currently sitting at
> 1.25MB and I think I'm at the edge. I tried "awk -?", but it never
> printed an error or came back, so I have a hunch I went over... man pages
> don't work... anything that seems to have any memory needs seem to fail.
That's probably an inconclusive test - awk interpreters don't typically
accept such an option and the GNO implementation might be expecting a
script in stdin.
> 5. Anything interesting going on with GNO? Or is it pretty much dead?
The lack of an available compiler is the big issue, since it prevents
easily porting of applications. The other problem is that a large
volume of available C code will incorrectly assume that int == 32 bits
and also (even worse) assume sizeof(int) == sizeof(int*). On a 65816
both of those are untrue so a lot of massaging will be necessary to get
things running.
Matt
- References:
- GNO...
- From: Rob Greene <greener@charter.net>