SMSQ/E 3.36
-
- Super Gold Card
- Posts: 528
- Joined: Tue Mar 11, 2014 8:00 pm
- Location: Oxford, UK.
- Contact:
Re: SMSQ/E 3.36
I've just been looking at the sources and trying to work out how the display stuff works just it just seems gobbledygook to me.
I had been wondering if I could modify the Atari driver to work with the Atari TT's medium resolution (640x480, 16 colours) but I wouldn't know where to start.
I had been wondering if I could modify the Atari driver to work with the Atari TT's medium resolution (640x480, 16 colours) but I wouldn't know where to start.
- mk79
- QL Wafer Drive
- Posts: 1349
- Joined: Sun Feb 02, 2014 10:54 am
- Location: Esslingen/Germany
- Contact:
Re: SMSQ/E 3.36
Please post a picture of a Spanish QL keyboard, I cannot find one anywhere on the web.afx wrote:How can I help you to solve the problem?
- mk79
- QL Wafer Drive
- Posts: 1349
- Joined: Sun Feb 02, 2014 10:54 am
- Location: Esslingen/Germany
- Contact:
Re: SMSQ/E 3.36
16 colour modes are not supported. It would be quite a lot of work to implement them, which is way I didn't do it.stephen_usher wrote:I've just been looking at the sources and trying to work out how the display stuff works just it just seems gobbledygook to me.
I had been wondering if I could modify the Atari driver to work with the Atari TT's medium resolution (640x480, 16 colours) but I wouldn't know where to start.
- Chr$
- QL Wafer Drive
- Posts: 1394
- Joined: Mon May 27, 2019 10:03 am
- Location: Sachsen, Germany
- Contact:
Re: SMSQ/E 3.36
I can do that!mk79 wrote:Please post a picture of a Spanish QL keyboard, I cannot find one anywhere on the web.afx wrote:How can I help you to solve the problem?
https://QXL.WIN
Collector of QL related computers, accessories and QL games/software.
Ask me about felt pads - I can cut them to size and they have proven excellent for mdv data recovery.
Collector of QL related computers, accessories and QL games/software.
Ask me about felt pads - I can cut them to size and they have proven excellent for mdv data recovery.
- mk79
- QL Wafer Drive
- Posts: 1349
- Joined: Sun Feb 02, 2014 10:54 am
- Location: Esslingen/Germany
- Contact:
Re: SMSQ/E 3.36
Cool, thanks. afx, you can try patching the 3.36 binary this way
The Q68 version is fine I supposed?
Code: Select all
s$ = "win1_gold"
l = FLEN(\s$)
IF l <> 237836 THEN PRINT "Wrong size": STOP
a = ALCHP(l)
LBYTES s$,a
POKE a+$F563,$4E
SBYTES_O s$,a
RECHP a
Re: SMSQ/E 3.36
Hi Marcel, great!!mk79 wrote:Cool, thanks. afx, you can try patching the 3.36 binary this way
Code: Select all
s$ = "win1_gold"
l = FLEN(\s$)
IF l <> 237836 THEN PRINT "Wrong size": STOP
a = ALCHP(l)
LBYTES s$,a
POKE a+$F563,$4E
SBYTES_O s$,a
RECHP a
Now with the patch the accented vowels (áéíóú) work well!. (¡Bravo!

There's just one small problem left:
- The single quote key ( ' ) is not on the spanish BBQL keyboard, this single quote must be produced by the CTRL key and acent key ( ´ ) (the key to the right of the P in lowercase). The version 3.36 not patched does this well.
Yes, In the Q68 SMSQE version 3.36, the Spanish keyboard layout and messages are perfect.mk79 wrote:The Q68 version is fine I supposed?
Chr$, thanks for advancing the photo ...Chr$ wrote:I can do that!

Best regards.
- mk79
- QL Wafer Drive
- Posts: 1349
- Joined: Sun Feb 02, 2014 10:54 am
- Location: Esslingen/Germany
- Contact:
Re: SMSQ/E 3.36
Hm, okay, in that case the table has to be done differently. You can combine the key with space in the meantime to get the character.
-
- Super Gold Card
- Posts: 528
- Joined: Tue Mar 11, 2014 8:00 pm
- Location: Oxford, UK.
- Contact:
Re: SMSQ/E 3.36
I realised that, but if I could make head or tail of the current code I might have been able to help. It seems quite impenetrable code.mk79 wrote:16 colour modes are not supported. It would be quite a lot of work to implement them, which is way I didn't do it.stephen_usher wrote:I've just been looking at the sources and trying to work out how the display stuff works just it just seems gobbledygook to me.
I had been wondering if I could modify the Atari driver to work with the Atari TT's medium resolution (640x480, 16 colours) but I wouldn't know where to start.
Re: SMSQ/E 3.36
Ok, that's a good solution for me. I find it even more comfortable than CTRL ´.mk79 wrote:You can combine the key with space in the meantime to get the character.
Thank you!
- mk79
- QL Wafer Drive
- Posts: 1349
- Joined: Sun Feb 02, 2014 10:54 am
- Location: Esslingen/Germany
- Contact:
Re: SMSQ/E 3.36
You could try my patch withafx wrote:Ok, that's a good solution for me. I find it even more comfortable than CTRL ´.
Code: Select all
POKE a+$F45C,$96
POKE a+$F563,0