https://dilwyn.theqlforum.com/docs/arti ... ulator.zip
Assembler only, IIRC.
Other articles also on same page about identifying machine type, e.g. https://dilwyn.theqlforum.com/docs/articles/machine.zip and https://dilwyn.theqlforum.com/docs/articles/what_hw.zip
Search found 3166 matches
- Mon Sep 01, 2025 9:13 am
- Forum: QL Emulation
- Topic: Detect Q-emulator
- Replies: 10
- Views: 265
- Sun Aug 31, 2025 3:29 pm
- Forum: Software & Programming
- Topic: Q_Liberator malaise
- Replies: 324
- Views: 79465
Re: Q_Liberator malaise
Me too, although both removal and addition are useful tools.pjw wrote: Sun Aug 31, 2025 2:01 pm Thanks Martin!
Id be more interested in a utility to entirely remove any built in runtimes..![]()
- Thu Aug 28, 2025 11:14 am
- Forum: Software & Programming
- Topic: FPNG (from PHGTK) and QLiberator
- Replies: 8
- Views: 549
Re: FPNG (from PHGTK) and QLiberator
Hi,
I'm having some problems compiling a program with QLiberator that uses the PHGTK graphics extensions.
...
It all works fine in SuperBASIC, but when compiled with QLiberator, it stops with:
Q_LIB error 19 Indices wrong
The line giving the problem is:
3245 e%=FPNG(x$,"ram1_test_pic",scrMode ...
- Wed Aug 27, 2025 6:32 pm
- Forum: Software & Programming
- Topic: EXIT FOR
- Replies: 0
- Views: 508
EXIT FOR
I've just spent a while debugging a BASIC program which didn't give the expected results for someone.
Turned out to be an issue concerning FOR loops which, while documented in places like the Jan Jones guide, is easy to forget about.
The program concerned had (I think) been converted from a BASIC ...
Turned out to be an issue concerning FOR loops which, while documented in places like the Jan Jones guide, is easy to forget about.
The program concerned had (I think) been converted from a BASIC ...
- Wed Aug 27, 2025 2:31 pm
- Forum: Software & Programming
- Topic: FPNG (from PHGTK) and QLiberator
- Replies: 8
- Views: 549
Re: FPNG (from PHGTK) and QLiberator
I've used PHGTK a lot since it was released, and not noticed this issue with compiling programs using it.
(For anyone who doesn't know of PHGTK, it's the Photon General Toolkit, a set of graphics extensions for converting GIF, PNG and JPG files)
So I've just made a little test program which I ...
(For anyone who doesn't know of PHGTK, it's the Photon General Toolkit, a set of graphics extensions for converting GIF, PNG and JPG files)
So I've just made a little test program which I ...
- Wed Aug 27, 2025 8:47 am
- Forum: The Off-Topic Section
- Topic: Today I Received...
- Replies: 791
- Views: 471942
Re: Today I Received...
I think RalfR should have been born British!
Some of those Beatles records, especially in mint condition with picture sleeves, can sell for fairly high prices these days.
Some of those Beatles records, especially in mint condition with picture sleeves, can sell for fairly high prices these days.
- Mon Aug 25, 2025 8:30 pm
- Forum: Software & Programming
- Topic: MAGEPROM Missing XTRAS File?
- Replies: 9
- Views: 689
Re: MAGEPROM Missing XTRAS File?
It may also have been the Supercharge compiler extensions which I think were actually called extras or xtras.
Thanks Dilwyn
I loaded the turbo_tk_code from ralf’s link and that did the trick for me with mageprom
There's some overlap of keyword names in both, so sometimes they are ...
- Mon Aug 25, 2025 7:58 pm
- Forum: Software & Programming
- Topic: MAGEPROM Missing XTRAS File?
- Replies: 9
- Views: 689
Re: MAGEPROM Missing XTRAS File?
It may also have been the Supercharge compiler extensions which I think were actually called extras or xtras.
- Mon Aug 25, 2025 2:50 pm
- Forum: Software & Programming
- Topic: Archive revisited
- Replies: 7
- Views: 823
Re: Archive revisited
Runtime Archive and documentation: https://dilwyn.theqlforum.com/psions/archrtm.zip . The manual contains a lot of useful information about facilities added to later versions of Archive, such as information about control codes, graphics (line and box) characters, use of user-written machine code ...
- Sat Aug 23, 2025 10:29 pm
- Forum: Software & Programming
- Topic: copy of block of lines from a program to another part of the same program
- Replies: 10
- Views: 1088
Re: copy of block of lines from a program to another part of the same program
Dilwyn
When I entered the command SBASIC I got an error message so I tried the following and that seemed to work too:
LOAD mybigprogram_bas
SAVE ram1_tmp_bas;line1 TO line2 (line number range to be copied)
NEW
LOAD ram1_TMP_bas
RENUM as required
MERGE mybigprogram_bas
I guess that does about ...