| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
Krill Loader & Open borders
I have problems while loading with Krills loader and at the same time have open upper & lower borders. As soon as i start to load the borders starts to flicker.
Note: i don't do anything else in the interrupt, just opening the upper & lower border.
Anyone have a clue why ? |
|
| |
Martin Piper
Registered: Nov 2007 Posts: 722 |
Does the loader use SEI/CLI? |
| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
thats what i first tought but couldnt find it in the code. |
| |
Burglar
Registered: Dec 2004 Posts: 1101 |
you probably timed the openborder code too tight.
which rasterline do u set $d011? I use $fa, should work fine. |
| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
$fa here aswell. (and been randomly trying different values with the same result :)). |
| |
Krill
Registered: Apr 2002 Posts: 2980 |
If you look at the test program that comes with the loader, you'll notice that it opens the borders while loading.
There is no SEI/CLI in the code, so interrupts have the exact same latency and jitter as without loading.
I guess you have not enabled KERNAL fallback, which might explain this behaviour if the loader misdetects the drive for some reason (detected drive type is returned in the X register after install).
Currently i have no idea what could cause this, but you can send me a minimal test program so i can have a look.
|
| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
Krill, i've sent you a mail now. (to krill at plush dot de)
|
| |
Krill
Registered: Apr 2002 Posts: 2980 |
You have enabled loading to the memory under the IO space at $d000-$dfff. Thus, the loader will switch $01.
Your interrupt handlers buffer $01 nicely, but they don't set it after buffering, so the writes to $d012 to set another trigger line and $d019 to ack the IRQ are ineffective when the loader was interrupted after having disabled the IO registers in order to write to $d000-$dfff.
Just set $01 to enable IO registers after buffering it in your IRQ handlers.
Btw., loading to $d000-$dfff decreases loader performance quite a bit, as it has to set $01 twice for each received byte.
Consider working around the need to do so, or use two incarnations of the resident code, one with and one without loading under IO space, the former only when it's really needed. |
| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
yeah found it now :)
and cant really avoid loading under $d000 unless i split my files in several parts and do a manual memcpy. unfortunely all our parts takes $08000-$ff3f. |
| |
Pantaloon
Registered: Aug 2003 Posts: 124 |
Is there a build flag for this:
"or use two incarnations of the resident code, one with and one without loading under IO space"
or do i manually need to do something :) |
| |
Krill
Registered: Apr 2002 Posts: 2980 |
Manually. Build the loader twice with and without load under IO. You'll notice the install portions are identical except for different configuration strings. |
... 21 posts hidden. Click here to view all posts.... |
Previous - 1 | 2 | 3 | 4 - Next |