Search the web
Sign In
New User? Sign Up
mattathias · Mattathias: Building a better BASIC
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 236 - 266 of 518   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
236
Hi, I installed Amiga in a Box on a laptop and I am trying to get MBasic to work on it. I had gcc but it gave me some undefined references. I am installing...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 1, 2005
7:31 pm
237
See http://function-pointer.org or download http://www.newty.de/fpt/zip/e_fpt.pdf for details. It tells how the syntax for function pointers varies from...
Sam Crow
samuraicrow
Offline Send Email
Nov 4, 2005
11:44 pm
238
Hi, I lost the link to the site with the info on the Amos file structure. Does anybody still have the link? Patrick [Non-text portions of this message have...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 6, 2005
6:40 pm
239
Patrick, I've added the link to the "links" section of this group. Mike ... structure. Does anybody still have the link?...
Michael Ness
sidewinder52c
Offline Send Email
Nov 6, 2005
7:04 pm
240
Hi Mike, Thanks. I always have in my mind the thought of making some C code that can read an in the Amos editor saved file. Patrick...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 6, 2005
8:34 pm
241
Hi, Why? Any benefits? Just wondering. Patrick [Non-text portions of this message have been removed]...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 7, 2005
1:31 pm
242
... The size of the source is smaller when saved in a tokenized state.  Also the interpreter parses the source more quickly if it is tokenized.  For the...
Sam Crow
samuraicrow
Offline Send Email
Nov 7, 2005
4:24 pm
244
Hi, Thanks for the info. If you have the fold/unfold part of a procedure, when you save the file it is unfold? I mean if you could look at an amos file you ...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 9, 2005
12:05 pm
245
... procedure, when ... file you ... walls when ... Folding is just a feature of the editor to hide procedures that you're not editing so that it won't take as...
Sam Crow
samuraicrow
Offline Send Email
Nov 9, 2005
4:40 pm
246
Hi, Ok. Let's see how far I can get with it. I will start just reading some info out of it. Like if it is Amos, Pro etc saved sourcecode. Patrick...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 9, 2005
9:55 pm
247
http://www.liquido2.com is back up with different forum software than before. Thanks Mike!...
Sam Crow
samuraicrow
Offline Send Email
Nov 12, 2005
3:17 am
248
Hi, Cool! Any updates on MBasic? Don't feel pushed, just asking. :-) Patrick...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 12, 2005
10:57 am
249
Hi, On saturday I became a member but I still have not recieved that so important activation e-mail. Mike? Patrick [Non-text portions of this message have been...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 14, 2005
9:57 am
250
Hi, I cannot find anything on Intuition windows and text. How to display text from a file in it. Type text in a window and save it. Or should I just move on to...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 14, 2005
3:39 pm
251
A text window is called a console window and is available using the CON: device under dos.library. If you must display a text file in a GUI I'd recommend...
Crow, Samuel David
samuraicrow
Offline Send Email
Nov 14, 2005
3:57 pm
252
Hi, Thanks. Just the answer I was waiting for. With the datatype system I would be able to only display text, right? The idea for me is to display text but ...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 14, 2005
4:32 pm
253
Hi, I was working with the RKM's and when I want to create a message block for device I/O it is saying: ConsIO = CreateExtIO(bla bla...); (to delete it it is...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 17, 2005
3:58 pm
254
Sorry, no new MBasic stuff. Actually I am thinking about keeping MBasic seperate from the AMOS Factory for now at least. What do you think? Should the AMOS...
Michael Ness
sidewinder52c
Offline Send Email
Nov 20, 2005
10:47 pm
255
Patrick, Yes, this should be true. I believe that CreateExtIO() and DeleteExtIO() are amiga.lib helper functions which have strict requirements on the size of...
Michael Ness
sidewinder52c
Offline Send Email
Nov 20, 2005
11:05 pm
256
Hi Mike, I have not recieved the mail yet. Maybe I overlooked it? Keep it seperate. Anyone else? Patrick...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 21, 2005
10:44 am
257
Hi Mike, I got it myself already. I use CreateIORequest and DeleteIORequest. This weekend I made some good progress on my stuff. Damn that feels good. :-) I am...
Patrick Wesseling
patrickwesse...
Offline Send Email
Nov 21, 2005
10:52 am
258
I am playing a bit with the console part of the Amiga. I want to put text in a window etc. The thing is that my program always crashes after I close the...
patrickwesseling
patrickwesse...
Offline Send Email
Nov 26, 2005
12:47 pm
259
Whenever I used the console.device in the past I always just opened it and started writing to it and reading from it. I never did anything special with the...
Crow, Samuel David
samuraicrow
Offline Send Email
Nov 26, 2005
3:09 pm
260
Any ideas on how to implement GOSUB in C? It's fairly easy in assembly, just push the instruction pointer onto the stack and jump to the new address, then on...
Michael Ness
sidewinder52c
Offline Send Email
Dec 10, 2005
6:52 pm
261
Hi Mike, Ah something to puzzle on. If you have an idea can you drop the code here? I mean an example in C on how you would do it. In the meantime I will give ...
Patrick Wesseling
patrickwesse...
Offline Send Email
Dec 10, 2005
11:04 pm
262
Anything other than a simple goto with a label will require that the code be converted to use a proc instead of a label. On n goto will also be impossible...
Sam Crow
samuraicrow
Offline Send Email
Dec 10, 2005
11:32 pm
263
Sam, I believe you are correct. There is no way to do a true GOSUB implementation in C. Subroutines must be functions. Although about ON n GOTO I think this...
Michael Ness
sidewinder52c
Offline Send Email
Dec 13, 2005
1:08 am
264
... Crap! This will require me rewriting the expression processing routines because the negative is a unary operator and must be placed before the expression,...
Michael Ness
sidewinder52c
Offline Send Email
Dec 13, 2005
1:32 am
265
Hello Michael ... with several GOTOs Maybe that could be done with function pointers aswell? I'm not sure if pointer table could be used as function...
Juha-Pekka Jokela
jpjokela
Offline Send Email
Dec 13, 2005
11:19 am
266
No. I am afraid that would require the typecasting of labels as functions which is illegal under C. On n proc will work but on n goto will not work as array...
Crow, Samuel David
samuraicrow
Offline Send Email
Dec 13, 2005
2:58 pm
Messages 236 - 266 of 518   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help