Search found 1315 matches

by pjw
Thu Feb 06, 2020 10:30 am
Forum: Software & Programming
Topic: EasyPTR APPMAN help
Replies: 23
Views: 6980

Re: EasyPTR APPMAN help

Jon,
You should be able to LRESPR the _app file and RUN or EXecute the SBASIC file to test your program. That should give a clearer idea of where the problem lies..
by pjw
Sun Feb 02, 2020 8:57 pm
Forum: Software & Programming
Topic: SuperBASIC omission (bug?) in SMSQ/E?
Replies: 12
Views: 4733

Re: SuperBASIC omission (bug?) in SMSQ/E?

Excellent!
by pjw
Sun Feb 02, 2020 5:35 pm
Forum: Software & Programming
Topic: SuperBASIC omission (bug?) in SMSQ/E?
Replies: 12
Views: 4733

Re: SuperBASIC omission (bug?) in SMSQ/E?

Hi John, Im not able to replicate the problem you describe. The correct STUFF command is compiled into the routine (as you can see by looking at the BASIC code). The old command has obviously been buggered by gremlins! It was included in the latest zip in error (by a dozy Smurf). If QLib complains t...
by pjw
Fri Jan 31, 2020 8:13 pm
Forum: Software & Programming
Topic: SuperBASIC omission (bug?) in SMSQ/E?
Replies: 12
Views: 4733

Re: SuperBASIC omission (bug?) in SMSQ/E?

Your wish just came true.. ;)
by pjw
Fri Jan 31, 2020 8:10 pm
Forum: Software & Programming
Topic: SuperBASIC omission (bug?) in SMSQ/E?
Replies: 12
Views: 4733

Re: SuperBASIC omission (bug?) in SMSQ/E?

Hi johnh, Yes, there seems to be a cockup here. Any errors should show "Job xx ScrapStuff V0.05..". I'll update Knoware soon, but in the mean time try the attached version. There is no need to LRESPR STUFF_bin to use ScrapStuff - unless you want to use STUFF for something else. In case any...
by pjw
Tue Jan 28, 2020 12:20 am
Forum: Hardware
Topic: QL/E tiny free space on QXL.WIN, Urs?
Replies: 6
Views: 1913

Re: QL/E tiny free space on QXL.WIN, Urs?

An 80mb container and only about 770k free? Is there some kind of bug perhaps with the way it calculates free space? I dont see why not. Its a disk stuffed with goodies for you to test. Most people dont need five different text editors or a ton of games they never play. Try them out, choose the one...
by pjw
Tue Jan 28, 2020 12:06 am
Forum: Hardware
Topic: QL/E tiny free space on QXL.WIN, Urs?
Replies: 6
Views: 1913

Re: QL/E tiny free space on QXL.WIN, Urs?

Could QLWARZ run under any other SMSQ/E system, like: SMSQmulator, Q68, QXL, Atari QL emulator, due to they use the same level of operating system. I guess, with a little elbow grease, it could be made to work on any system that uses .WIN container files.. The simplest in most cases, perhaps, would...
by pjw
Thu Jan 23, 2020 10:34 am
Forum: Help for New Users
Topic: Emulation program freeze
Replies: 12
Views: 5088

Re: Emulation program freeze

If you don't code a DATA directive (or create code that is linked), the toolset will assume a default data space of 4K, which is by far enough for most trivial programs. 24 bytes (just realizing that statement) is thus a bit on the frugal end ;). What apparently happened is that the stack ran backw...
by pjw
Wed Jan 22, 2020 11:27 pm
Forum: Help for New Users
Topic: Emulation program freeze
Replies: 12
Views: 5088

Re: Emulation program freeze

Hi Alan, Its ages since I created a job in assembler. I mainly write toolkits. IIRC you need some stack space! Make the following alterations (first and last lines) and your job should work: ... data 24 ; some dataspace (sloppy estimate) MT.FRJOB equ $05 Base bra.s Start ds.b 6-(*-Base) dc.w $4afb ...