Search found 2255 matches

by NormanDunbar
Tue Apr 02, 2024 3:26 pm
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

Unfortunately, Wolfgang's documentation describes the raw binary format expected by config. Tony's macros, however (which are a bit fragile and not absolutely obvious to use) are not described there. I seem to recall my original QPTR documentation had some description of the config macros, but more...
by NormanDunbar
Mon Apr 01, 2024 2:17 pm
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

The official documentation for Config may also help. It's downloadable from Wolfgang's web site at https://www.wlenerz.com/qlstuff/Config.zip.

Cheers,
Norm.
by NormanDunbar
Sun Mar 31, 2024 5:47 pm
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

Hi T0nyt, you asked about using config as a QL best practice. You don't have to! My suggestion was simply a feeble attempt at humour. Sorry. However, as relates to your "menu" system, you will always be LRUNning the same S*BASIC program, so no need for a config block. However, if this was ...
by NormanDunbar
Sat Mar 30, 2024 4:10 pm
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

And, for your next iteration, add a config block so that the command to be typed in is configurable without having to edit and reassemble the code! :D :D :D :D By the way, there was nothing wrong with your code, it worked. My comments were there to point you at "better" QDOS specific stuff...
by NormanDunbar
Sat Mar 30, 2024 3:11 pm
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

If I may comment.... 1. In QDOS/SMSQ, strings are defined this way, with a leading word determining the length, followed by the characters of the string. runcmd dc.w cmdEND-runcmd-2 dc.b 'lrun win1_menu',$0A cmdEND equ * Doing it this way means never having to count characters when you change the st...
by NormanDunbar
Sat Mar 30, 2024 2:50 pm
Forum: Help for New Users
Topic: QL Tinkering
Replies: 285
Views: 191659

Re: QL Tinkering

I agree 100% with what Dilwyn said.


Cheers,
Norm.
by NormanDunbar
Sat Mar 30, 2024 9:25 am
Forum: Software & Programming
Topic: Run a SuperBasic program from Assembler?
Replies: 36
Views: 1135

Re: Run a SuperBasic program from Assembler?

Nice!

Cheers,
Norm.
by NormanDunbar
Wed Mar 20, 2024 10:03 pm
Forum: The Welcome Area
Topic: Hello from Prague
Replies: 2
Views: 198

Re: Hello from Prague

Welcome. You are among friends here. Have fun.

Cheers,
Norm.
by NormanDunbar
Wed Mar 20, 2024 10:01 pm
Forum: Software & Programming
Topic: Screen grabber
Replies: 7
Views: 338

Re: Screen grabber

artificer wrote:Norman Dunbar also wrote a screen grabber, possibly only mode 4 called I think Grabbit.
I fear you may have mistaken me for someone else! I wrote a couple of very bad ql2bmp and bmp2ql utilities many years ago, but never a screen grabber. At least, as far as I'm aware!


Cheers,
Norm.
by NormanDunbar
Fri Mar 15, 2024 5:29 pm
Forum: Software & Programming
Topic: Higher traps on Q68
Replies: 2
Views: 140

Re: Higher traps on Q68

A quote from Marcel in https://qlforum.co.uk/viewtopic.php?p=21655#p21655: ... or continue to use "trap #15", the latter however must be enabled by the command "tl 15" (IIRC "Trap Level 15") to enter QMON, otherwise it will be ignored. Foxed me for a while when my trap ...