Search found 631 matches

by janbredenbeek
Thu Feb 22, 2024 9:08 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

Interesting, you managed to jump to a system variable (SV.RAND) which contains a random number... And by chance it happened to have a value $Axxx which is always illegal to the 68000 (but often used by emulators).
by janbredenbeek
Thu Feb 22, 2024 7:34 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

Thanks Tofro, so "OFFSET 0" puts the code at the start of the 4kb? It still won't assemble code after an OFFSET though (the offset section is at the end of my source file) You need to add a SECTION directive after the block defined after OFFSET 0. E.g.: OFFSET 0 label1 DS.L 1 label2 DS.L ...
by janbredenbeek
Thu Feb 22, 2024 4:07 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

Just a short explanation on why you shouldn't be fiddling with PC_INTR ($18021) directly: If you write directly to that address (a hardware register), you're confusing the system that normally maintains a copy on what was last written there. Next, you seem to be writing $ff there, which re-arms all...
by janbredenbeek
Thu Feb 22, 2024 3:58 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

I tend to use code like that: timerLinkage timer_pllk ds.l 1 ; Polling interrupt linkage timer_plad ds.l 1 ; Polling interrupt service routine address ... I can't get most of this to assemble especially anything referencing "(A6)" which throws "relocatable value not allowed here"...
by janbredenbeek
Tue Feb 20, 2024 3:20 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

Have settled on the Quanta version of GST but have replaced the QED_exe with Jans v2 QED (BTW I couldn't find any version of QED that matched the downloadable, from Dilwyn's download pages, Quanta QED manual though, but my old physical manual seems to have the correct commands. e.g. the Quanta manu...
by janbredenbeek
Mon Feb 19, 2024 10:43 pm
Forum: Software & Programming
Topic: Joystick/Sound in Supervisor mode?
Replies: 66
Views: 2426

Re: Joystick/Sound in Supervisor mode?

You need to disable interrupts anyway on standard QDOS when using the second screen. But MT.IPCOM keeps working as it communicates directly with the IPC, so keyboard input and sound output is still possible.
by janbredenbeek
Sat Feb 17, 2024 10:07 pm
Forum: The Off-Topic Section
Topic: Today I Received...
Replies: 642
Views: 286822

Re: Today I Received...

Looks like an Issue 5 motherboard which originally had IC17 fitted but that's been snipped out after the ROMs have been upgraded to JM at some point. There's a Hermes manual and the co-processor is a Philips rather than the usual Intel chip so that could be a Hermes but I can't yet tell. A Philips-...
by janbredenbeek
Fri Feb 09, 2024 11:43 pm
Forum: General QL Chat
Topic: The Sinclair QL in North America
Replies: 4
Views: 410

Re: The Sinclair QL in North America

I've just posted a new paper called "The Sinclair QL in North America" on my website. It has details on the launch of the QL here in the US, the QL & T/S community, the QL shows, the vendors and even QL software written on this side of the pond. Nice to see a mention of QBOX :) . I re...
by janbredenbeek
Wed Feb 07, 2024 8:24 pm
Forum: Software & Programming
Topic: Interrupt vector and Minerva
Replies: 11
Views: 589

Re: Interrupt vector and Minerva

Hi Wietze, I read from some manual that when using Minerva one should not change the stack pointer. In the Minerva romcode itself, I see there are assumptions made about the location of the stack pointer. Some minimal testing shows that this matters (in my code SP is set to $30100, and Minerva makes...
by janbredenbeek
Wed Feb 07, 2024 12:04 am
Forum: Software & Programming
Topic: Interrupt vector and Minerva
Replies: 11
Views: 589

Re: Interrupt vector and Minerva

Hi Jan, thanks for your comment, nice to see another Dutchie here :). Regarding the nop; yes, geez, is my face red. That is supposed to me ending in 5.... ;) Correct: vblRoutList dc.l 0 dc.l demoScriptHandler Where demoScriptHandler is part of the little kernel of my demosystem. That looks OK, thou...