Search found 354 matches

by ql_freak
Sat Jun 17, 2023 1:34 am
Forum: Software & Programming
Topic: Too many parameters/locals bug
Replies: 12
Views: 2876

Re: Too many parameters/locals bug

... the SBLocals directory has a C68 source file which emulates thecway the SuperBASIC handles locals ... ... (If anyone is even slightly interested!) Sounds interesting, especially C68Port (Digital Precision?). Does this finally work? I have had bought it, but It didn't work. At least not with my ...
by ql_freak
Fri Jun 16, 2023 8:08 pm
Forum: Software & Programming
Topic: Too many parameters/locals bug
Replies: 12
Views: 2876

Re: Too many parameters/locals bug

Hi Steve, There was a fix for the LOCals bug : erzero=one: if erzero<>0: print 'error': stop ... Albeit I don't fully understand your (not complete?) example, I think it's because local variables in SuperBASIC are not really local variables as in other languages (e.g. C or Python). See the following...
by ql_freak
Thu Jun 15, 2023 1:17 am
Forum: Hardware
Topic: No led lit and no test for microdrive 2
Replies: 6
Views: 2901

Re: No led lit and no test for microdrive 2

I then swapped drives, putting MDV1_ on MDV2_'s slot and vice versa. I have determined that there is power only on the left slot, so I can be pretty sure that there is no power on the right one. Could someone of you give me some suggestions on what I could measure, and possibly a diagram of the vol...
by ql_freak
Tue Jun 13, 2023 1:05 am
Forum: Software & Programming
Topic: BASIC_INDEX%() and SBASIC/MultiBASIC
Replies: 19
Views: 3384

Re: BASIC_INDEX%() and SBASIC/MultiBASIC

TurboFix was my code - I should have the sources here somewhere That's Good! Than it should be easy to port BASIC_INDEX% to S/MultBASIC. I think the main problem is to get the name table. I have did it always via asking the System Variables for the start of the name table. But this seems not to be ...
by ql_freak
Sun Jun 11, 2023 2:22 am
Forum: Software & Programming
Topic: BASIC_INDEX%() and SBASIC/MultiBASIC
Replies: 19
Views: 3384

Re: BASIC_INDEX%() and SBASIC/MultiBASIC

First try (in SuperBASIC) for a BASIC replacement (ssems to work). I even have a batch (SB without line numbers) for that, but this needs testing). 100 REMark Preparation of a oneliner (for a batch file) to search the 110 REMark BASIC namelist for a name 140 : 180 : 1000 REMark Start of main() progr...
by ql_freak
Sun Jun 11, 2023 2:02 am
Forum: Help for New Users
Topic: The most Two (2) Important Commands for new SMSQ/E User (e.g. QPC2)
Replies: 4
Views: 3722

Re: The most Two (2) Important Commands for new SMSQ/E User (e.g. QPC2)

p.s.: Of course much thanks to Marcel! Without him QDOS wouldn't be, what it is today. p.p.s.: One main problem is the maximum path length limit, which unfortunately is deeply built into the OS :‑| There is an (virtual?) Internet Filing System without the (horrible) length limitation of QDOS pathnam...
by ql_freak
Sun Jun 11, 2023 1:51 am
Forum: Help for New Users
Topic: The most Two (2) Important Commands for new SMSQ/E User (e.g. QPC2)
Replies: 4
Views: 3722

The most Two (2) Important Commands for new SMSQ/E User (e.g. QPC2)

These, most 2 important commands should ALWAYS exist in Your bootfile: 1: PE_BGON : REMark Enables that windows in background do not stop when they are doing output to screen (e.g. a Window). [First seen on Minerva with additional Software, e.g. Pie or Pex] 2: WM_MOVEMODE 2 : REMark Many (most?) pro...
by ql_freak
Fri Jun 09, 2023 11:43 am
Forum: Software & Programming
Topic: BASIC_INDEX%() and SBASIC/MultiBASIC
Replies: 19
Views: 3384

Re: BASIC_INDEX%() and SBASIC/MultiBASIC

I have now tested it with TurboFix_bin. Also doesn't work in additional SBASIC jobs.
by ql_freak
Fri Jun 09, 2023 6:22 am
Forum: Software & Programming
Topic: BASIC_INDEX%() and SBASIC/MultiBASIC
Replies: 19
Views: 3384

Re: BASIC_INDEX%() and SBASIC/MultiBASIC

Didn't know about the origin parameter for WMON, good hint. But back to topic about BASIC_INDEX% which may be used for other useful things. Can it be fixed with TurboFix or is there a similar command which works with SBASIC or MultiBASIC (BTW: I have not yet tested it with MultBASIC) jobs other than...
by ql_freak
Thu Jun 08, 2023 1:15 am
Forum: Software & Programming
Topic: BASIC_INDEX%() and SBASIC/MultiBASIC
Replies: 19
Views: 3384

Re: BASIC_INDEX%() and SBASIC/MultiBASIC

Thanks pjw, 500 ERT HOT_KEY('B', "OUTLN#0,512,256,SCR_XLIM-512,0:WINDOW#0;512,52,SCR_XLIM-512,204:PAPER#0;0:INK#0;4:BORDER#0;1,255:CLS#0:WINDOW 256,202,SCR_XLIM-256,0:PAPER 2:INK 7:BORDER 1,255:CLS:WINDOW#2,256,202,SCR_XLIM-512,0:PAPER#2;7:INK#2;2:BORDER#2;1,255:CLS#2" & CHR$(10)) Edit...