Search found 3144 matches

by tofro
Tue Jul 15, 2025 11:57 am
Forum: Software & Programming
Topic: My "from PACKAGE import *" (Python) simulation project (reflection)
Replies: 81
Views: 8886

Re: My



Ideally, sqLux should support both the Unix/Linux clipboard and the Windows clipboard. I doubt XorA will ever implement this.

:D


I'm not so sure: One of the advantages of having switched to SDL2 ist that there is multi-platform support for the system clipboard and drag&drop. It shouldn't be ...
by tofro
Tue Jul 15, 2025 9:03 am
Forum: Software & Programming
Topic: My "from PACKAGE import *" (Python) simulation project (reflection)
Replies: 81
Views: 8886

Re: My


sqlux doesn't have clipboard support. Ideally, sqLux should support both the Unix/Linux clipboard and the Windows clipboard. I doubt XorA will ever implement this.

:D


I'm not so sure: One of the advantages of having switched to SDL2 ist that there is multi-platform support for the system ...
by tofro
Tue Jul 15, 2025 6:11 am
Forum: General QL Chat
Topic: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)
Replies: 23
Views: 1540

Re: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)



...

"Pure" programs are programs that can be started through the Hotkey System multiple times and can share the same instance of code, but have a private data space - They have basically the same restrictions as ROMable code.

...

"Impure" programs are in no way any "worse" than "Pure" ones ...
by tofro
Tue Jul 15, 2025 6:08 am
Forum: General QL Chat
Topic: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)
Replies: 23
Views: 1540

Re: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)



The question is: Has these (available) options from C68 been tested in the QDOS version of C68. They are not used in the libraries delivered with C68 (and so the code is not tested). Lattice was the most famous compiler at tits time, (Atari, Amiga, DOS, embedded, ...) and so it's reentrant ...
by tofro
Sun Jul 13, 2025 7:04 pm
Forum: Hardware
Topic: Sinclair ql black screen
Replies: 44
Views: 1846

Re: Sinclair ql black screen

I'm actually not getting why you haven't replaced IC21 that you have (IMHO) identified as faulty in post 67. It is possible, but very unlikely, that the B side is completely grounded by defective RAM chips.
by tofro
Sun Jul 13, 2025 6:50 pm
Forum: General QL Chat
Topic: My current QL accelerator project
Replies: 99
Views: 10224

Re: My current QL accelerator project


Well that hasn't had the effect I was hoping for, it hasn't sorted it but at least I know I am turning the interrupts off
correctly now and I can rule that out.

Strangely, when I read and print the contents of the interrupt register directly after setting it to 0x1F
and before the emulator ...
by tofro
Sun Jul 13, 2025 5:35 pm
Forum: General QL Chat
Topic: My current QL accelerator project
Replies: 99
Views: 10224

Re: My current QL accelerator project


like this...

ps_write_8(0x18021, 0xFF); // Mask off all interrupt sources
ps_read_8(0x18021); // clear any pending interrupts by reading interrupt register?

I'm pretty sure it isn't right. :D


To clear all interrupts, you need to write the lower 4 bits with 1 (for gap=0, interface=1, transmit ...
by tofro
Sun Jul 13, 2025 4:52 pm
Forum: General QL Chat
Topic: My current QL accelerator project
Replies: 99
Views: 10224

Re: My current QL accelerator project



The first 2 yellow blips are me trying to mask all interrupts and clear any pending interrupts before the main
execution loop of the emulator. The solid yellow is JS booting up. For a single moment IPL1 goes High ie. no interrupts
and IPL_ZERO also follows but IPL1 immediately goes low again ...
by tofro
Fri Jul 11, 2025 9:52 am
Forum: General QL Chat
Topic: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)
Replies: 23
Views: 1540

Re: Contact to Metacomco (and Lattice!) because of their C Development Kit? (The Lattice C compiler)


Even if the C68 options to produce reentrant code are working, you can write functions, which you can call from assembler. But you cannot even write the "hello world" program from Kernighan & Ritchie, cause this uses printf(), which is in the standard library which is not reentrant.


Well, the ...
by tofro
Fri Jul 11, 2025 6:37 am
Forum: Software & Programming
Topic: My "from PACKAGE import *" (Python) simulation project (reflection)
Replies: 81
Views: 8886

Re: My "from PACKAGE import *" (Python) simulation project (reflection)


My Reflection toolkit does not currently load any system extensions, just S(uper)BASIC FuNctions and PROCedures. It's practical to LRESPR them in a MultiBASIC job when developping. If you change something you can kill the MultiBASIC job, start another MultiBASIC, LRESPR the new version and test it ...