Search found 1315 matches

by pjw
Sun Apr 11, 2021 12:33 pm
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

PS: Last year I sent a request to Wolfgang to expand the name allowance for SBASIC daughter jobs to 48 characters (the value chosen by TT for Things etc) but it seems to have got lost. The current 40 char limit is just a little too little to my mind, while 48 allows for the full 42 char file name an...
by pjw
Sun Apr 11, 2021 12:24 pm
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

I dont argue with that, Tobias, I was just pointing out what I thought was a sensible figure that one could rely on. Its up to the individual programmer if he thinks he can make good use of other values, although he should not be surprised if other parts of the system wont cooperate: If you were to ...
by pjw
Sun Apr 11, 2021 9:30 am
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

<> I have another question: how long a job name is allowed to be? For now all generated executables have the job name "FPC" hardwired. It would be cool to have this set to something more meaningful compile time. But I need to know what's the longest name allowed. Im sure Marcel will answe...
by pjw
Tue Apr 06, 2021 10:52 pm
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

<> On this point of detecting whether a valid directory-device has already been specified, what is the most robust/elegant way to validate this, given the ever-growing list of possible devices that a user may have installed? I guess QPAC has a way to build it's list of available devices for the 'Fi...
by pjw
Mon Apr 05, 2021 10:21 pm
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

Unarguably intentional. Perhaps it was done to avoid a program halting unnecessarily for an unimportant "error". Job already done. Why make a fuss?
by pjw
Sun Apr 04, 2021 5:46 pm
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

I submitted FDEL (DELETE as a function) for inclusion in SMSQ/E v3.34 (I think). This returned error In Use if the file to be deleted was open (which was my main reason for doing it), but did not return Not Found if the file was missing, as the OS doesnt either. I got an unofficial version of SMSQ/E...
by pjw
Sun Apr 04, 2021 5:32 pm
Forum: The Off-Topic Section
Topic: Today I Received...
Replies: 643
Views: 291023

Re: Today I Received...

NormanDunbar wrote:Ouch! :(

Hope it gets better soon, and is not (too) painful.
Thanks :)
A bad lumbago beats this for pain, but it will be pretty inconvenient to be limping around on crutches for weeks, if not months, ahead. Anyway, nice to have a spanking new hip, good for another few thousand miles, I hope..
by pjw
Sun Apr 04, 2021 2:23 pm
Forum: The Off-Topic Section
Topic: Today I Received...
Replies: 643
Views: 291023

Re: Today I Received...

Today I received..
Today I received..
Actually, it was some days ago, slipping on some treacherous ice in a bad way. I didnt even require a motorbike!
by pjw
Sun Apr 04, 2021 11:35 am
Forum: General QL Chat
Topic: m68k.info talk with me
Replies: 33
Views: 9849

Re: m68k.info talk with me

How about super imposing a parallel system that works a bit like QPC's DOS device? Mount old devices somewhere on the directory tree. eg MOUNT 'WIN1', '\somewhere\win1'. Anything under 'win1' has to conform to the old conventions, and can be accessed in standard ways, with a bit if OS trickery, if n...
by pjw
Sun Apr 04, 2021 9:57 am
Forum: Software & Programming
Topic: QL / PASCAL
Replies: 303
Views: 77693

Re: QL / PASCAL

I havent followed this discussion in detail (due to circumstances), but I had to react to some assertions made: The max file size on a WIN device under SMSQ/E is 2^31b (2Gb), including the 64b header. So the max legal position one could set is 2^31-65. Eg ch = fopen(<filename>): get#ch\2^31-65: prin...