Search found 2715 matches

by tofro
Tue May 21, 2024 2:15 pm
Forum: Software & Programming
Topic: Magnetic Scrolls Interpreter - Christmas Edition
Replies: 49
Views: 14542

Re: Magnetic Scrolls Interpreter - Christmas Edition

There's a new release on Github that should re-enable interlaced (32 color) graphics mode and add some other minor enhancements. For GD2 users, everything is as it was, so no reason to upgrade.

https://github.com/tofro/QL-Magnetic/releases
by tofro
Tue May 21, 2024 2:10 pm
Forum: Hardware
Topic: Connect the Sinclair QL to a serial printer
Replies: 3
Views: 37

Re: Connect the Sinclair QL to a serial printer

And as you apparently have the handshake lines connected, you should probably also use them (i.e. leave out the "i" from the device name).

I'd try

Code: Select all

BAUD 9600
OPEN #3,ser2hr
LIST #3
by tofro
Tue May 21, 2024 1:50 pm
Forum: Hardware
Topic: Connect the Sinclair QL to a serial printer
Replies: 3
Views: 37

Re: Connect the Sinclair QL to a serial printer

600 Baud is very unlikely.

Apple. ImageWriters default to 9600 Baud if I remember that correctly. So, you should probably try this.
by tofro
Tue May 21, 2024 9:58 am
Forum: Wanted
Topic: Looking for Extended MODE4 emulator for Atari Mega ST
Replies: 0
Views: 19

Looking for Extended MODE4 emulator for Atari Mega ST

Title says it all. I'm searching for a (working) extended Mode4 Emulator for an Atari Mega ST. I know those are as rare as hens' teeth, but maybe someone has one laying around they no longer need. Back in the 1990s, that was my setup that I would really like to re-create after having stupidly sold t...
by tofro
Mon May 13, 2024 1:10 pm
Forum: Hardware
Topic: CST Ram Plus eproms - CST QDisc v4 issue
Replies: 20
Views: 1082

Re: CST Ram Plus eproms - CST QDisc v4 issue

The QL memory map reserves (interestingly, much like the IBM PC) address space above $C0000 for I/O cards with 16k per slot. How this address space is used by the card (registers, ROM,...) is up to the card. QDOS will, on startup, scan the ROM port address ($C000) and the base addresses of each of t...
by tofro
Sun May 12, 2024 2:28 pm
Forum: Software & Programming
Topic: QSTAR 2
Replies: 25
Views: 845

Re: QSTAR 2

I load a lot of programs residentially at boot. I tend to avoid programs that include Qlib_run, TK2, Turbo_TK, Ptrmen_cde, Qptr, .. as their inclusion doesnt bode well for the quality of the rest of the program! I tend to load those toolkits and a few more myself at boot time. That's what you and I...
by tofro
Sun May 12, 2024 11:42 am
Forum: Software & Programming
Topic: QSTAR 2
Replies: 25
Views: 845

Re: QSTAR 2

In most cases, it is just better to link TK2 (or any other used toolkit) into the compiled binary instead of loading it in BOOT. That means once your program is done, it will be gone again. With your approach, you might be ending up filling your memory with multiple copies of TK2 (which won't hurt, ...
by tofro
Sun May 12, 2024 10:35 am
Forum: Software & Programming
Topic: Assembly Language eMagazine - New Issue out now!
Replies: 7
Views: 971

Re: Assembly Language eMagazine - New Issue out now!

XorA wrote: Sun May 12, 2024 9:52 am
NormanDunbar wrote: Sun May 12, 2024 6:47 am
XorA wrote: Sat May 11, 2024 5:49 pm In just 28 days then?
Might be a wee bit longer! Currently in Scotland, house hunting.....

Cheers,
Norm.
Makes a change from Haggis hunting I suppose!
Houses are a lot easier to hit, I'm sure :)
by tofro
Sun May 12, 2024 9:01 am
Forum: Software & Programming
Topic: Double buffering?
Replies: 10
Views: 245

Re: Double buffering?

Even if Peter says there isn't, here is a working example of how you can make the second screen usable in QDOS machine code programs. I didn't say there isn't. Just that I can not remember - which is a difference over 50 ;) I wonder how much room your procedure would leave for the actual code and d...
by tofro
Sun May 12, 2024 7:55 am
Forum: Software & Programming
Topic: Double buffering?
Replies: 10
Views: 245

Re: Double buffering?

Even if Peter says there isn't, here is a working example of how you can make the second screen usable in QDOS machine code programs. Software that wants to do that needs, however, jump through some hoops to work and come back to a working system. You will also likely need a memory expansion to have...