Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Best practice IRQ recovery
2021-06-10 20:30
Trap

Registered: Jul 2010
Posts: 222
Best practice IRQ recovery

Hi,

Here's a little newbie question. Sorry, I'm still learning this shit and it's really complicated :(

I have kernel off ($01=$35) and I am running IRQ's using the normal $fffe/$ffff vectors.
I want to exit from this and call a prepacked piece of code (in this case something packed with TinyCrunch).

I tried restoring the IRQ vectors and jump to the packer. However, it just hangs. I tried some other things but all gave the same result. The only thing that worked was when I did this:

sei
lda #$36
sta $01
jsr $ff81
jmp unpacker

The problem of course is that it resets the VIC which isn't really great for my situation.

So, my question:

What is the correct/proper way to exit from a part and go to the next? preferably not using kernal routines :|

Thank you.

Trap
 
... 78 posts hidden. Click here to view all posts....
 
2021-06-13 12:08
ChristopherJam

Registered: Aug 2004
Posts: 1378
haha, writing to the NMI vector without disabling the pertinent CIA first is just as much asking for it.

SEI is no more effective at disabling otherCIA and VIC than turning off the relevant sources, and if you're *really* concerned about hostile/badly written code I've yet to see anything that would protect against someone using a never-returning once-per-frame NMI that immediately sets up a raster interrupt from scratch before falling into NOPs.

You're still going to be vulnerable right up to the point that you've written to both DC0D and I and there's not much you can do about that.

At some point you need to set some ground rules for the code you're shutting down. So yes, if you want to be tolerant of the preceding part setting enable bits in ISRs, by all means wrap your shutdown code in SEI/CLI. It still won't be ironclad, but it will indeed deal with a few more possibilities.

Alternately, either assume that enabling interrupt sources should only be done at startup, or make it the responsibility of the preceding part to shut down gracefully.
2021-06-13 12:08
Copyfault

Registered: Dec 2001
Posts: 466
Quoting Martin Piper
If there was code running that used two or more interrupt sources to operate correctly, then using SEI/CLI would be advisable. This is because the code below without SEI/CLI is not atomic:

lda #$7f
sta $dc0d
sta $dd0d
ldx #0
stx $d01a


In other words, there are a few cycles between switching off IRQ source from CIA1, CIA2 and VIC2 where such complex code could misbehave, say for example by enabling the source in the IRQ that you've just switched off.
This is what I was pointing at with my last post: an IRQ condition might become fulfilled during the execution of the STORE-opcodes that actually switch off further IRQ triggers by the source the STORE is affecting. The no. of cycles that it'll take to enter the irq routine depends on the cycle this irq condition was fulfilled - and the added comments in the example source code reflect my understanding of this delay.

Quoting Martin Piper
]So using SEI/CLI is the correct bullet proof way of tackling that issue.
I still don't understand why this should be needed. Switching off an IRQ source does just this; no further IRQs should be triggered after the source has been disabled, with the exception of the ones that got triggered while performing the disabling store opcode (see above).

But reading the other posts, I guess I have to ask: where am I wrong?
2021-06-13 12:17
ChristopherJam

Registered: Aug 2004
Posts: 1378
Quoting Copyfault
I still don't understand why this should be needed. Switching off an IRQ source does just this; no further IRQs should be triggered after the source has been disabled, with the exception of the ones that got triggered while performing the disabling store opcode (see above).

But reading the other posts, I guess I have to ask: where am I wrong?


You're not really wrong. The only edge case this misses is when an interrupt triggered by one source reenables interrupts from another source you've already shut down (eg a VIC interrupt setting up a CIA interrupt).
2021-06-13 12:23
Copyfault

Registered: Dec 2001
Posts: 466
Quoting ChristopherJam
argh, damn it. Give the possibility of "some other coder's VIC interrupt setting up a CIA interrupt or vise versa" I might actually need to reconsider my stance.

How hostile an environment do I want to guard against is the question I guess..
Ah ok, if the irq vecs have been changed already and need to be readjusted to some new routine, this might become tricky without SEI/CLI. Not completely impossible, but needs careful planning when the hi/lo-vecs are set.

In my former posts, I had a basic startup situation with its standard irqs in mind...
2021-06-13 12:27
Copyfault

Registered: Dec 2001
Posts: 466
Quoting ChristopherJam
Quoting Copyfault
I still don't understand why this should be needed. Switching off an IRQ source does just this; no further IRQs should be triggered after the source has been disabled, with the exception of the ones that got triggered while performing the disabling store opcode (see above).

But reading the other posts, I guess I have to ask: where am I wrong?


You're not really wrong. The only edge case this misses is when an interrupt triggered by one source reenables interrupts from another source you've already shut down (eg a VIC interrupt setting up a CIA interrupt).
Oh yes! So mixtures of IRQ sources have to be forbidden ;) But this'd narrow the possibilities (and thus the creativity) so I fear the revenge of evil SEI/CLI :(
2021-06-13 13:41
chatGPZ

Registered: Dec 2001
Posts: 11108
The resistance to write proper code in favour of some 80s cargocult is impressing =D
2021-06-13 13:59
Krill

Registered: Apr 2002
Posts: 2839
As has been demonstrated, it's not cargo cult under certain conditions. (It remains cargo cult when coming from BASIC.)

But then i'd consider setting interrupt masks from interrupt handlers bad practice. There are ways to effectively suspend interrupts without setting an interrupt mask, for both CIA timer and VIC raster interrupts, which would work in a ping-pong setup.

Now, any clean-up code after a demo part should know best how to safely disable all interrupts.

And it's still advisable to clean up things from within an interrupt handler. The I flag is set already, and the last interrupt has been acknowledged already or would have to be acked later anyways if not exiting yet.
2021-06-13 14:07
chatGPZ

Registered: Dec 2001
Posts: 11108
Quote:
it's not cargo cult under certain conditions.

sure, there are some RARE cases where its needed. but certainly not in the general case, or even in most cases.
2021-06-13 14:20
Oswald

Registered: Apr 2002
Posts: 5017
good point with irq's reenabling irqs. I'll keep sei cli and ack cia irqs :)
2021-06-13 15:21
ChristopherJam

Registered: Aug 2004
Posts: 1378
Quote: good point with irq's reenabling irqs. I'll keep sei cli and ack cia irqs :)

Don't forget to write to $dd0d before the others then SEI for a second time in case an NMI didn't restore the I bit.
Previous - 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
Operator Teleksu
Apollyon/ALD
Airwolf/F4CG
psych
Oswald/Resource
rambo/Therapy/ Resou..
Krill/Plush
Impetigo/Crescent
Acidchild/Padua
zscs
Mibri/ATL^MSL^PRX
Guests online: 156
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 The Ghost  (9.6)
9 Wonderland XIV  (9.6)
10 Bromance  (9.6)
Top onefile Demos
1 It's More Fun to Com..  (9.8)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 Rainbow Connection  (9.5)
6 TRSAC, Gabber & Pebe..  (9.5)
7 Onscreen 5k  (9.5)
8 Wafer Demo  (9.5)
9 Dawnfall V1.1  (9.5)
10 Quadrants  (9.5)
Top Groups
1 Oxyron  (9.3)
2 Nostalgia  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Organizers
1 Burglar  (9.9)
2 Sixx  (9.8)
3 hedning  (9.7)
4 Irata  (9.7)
5 MWS  (9.6)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.059 sec.