| |
Shadow Account closed
Registered: Apr 2002 Posts: 355 |
IRQ-loader toolchain for KickAss/Windows?
So, the one and only time I tried making an IRQ-loading demo I swore I would never, ever try that again.
Now I guess the memory has faded enough that I'm perhaps starting to reconsider! :)
Back then I used Dreamload and Exomizer, however putting it together was a complete pain in the ass.
I don't recall exactly what the trouble was, but I think it was the fact that the de-exomizer needed to point to the end of the packed data, which meant I had to compile the parts I wanted to load, exomize them, manually note the lengths, and then enter that length in another source where I had the general part-loader as indata to the deexomizer. Every little change meant redoing that procedure since the packed length always differed a bit.
Has anyone some more plug-and-play-ready solutions? I know there is lft's Spindle system, but that seems a bit too specific in the way you have to do things, and also kind of Linux-centric.
I would prefer working from Windows and using KickAssembler. |
|
... 62 posts hidden. Click here to view all posts.... |
| |
soci
Registered: Sep 2003 Posts: 480 |
On emulator I've meant VICE.
It seems it doesn't even start with the 1541U-II I have with me which means it need to wait at least a week or so... |
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
VICE isnt perfectly right with this kind of things either, beware :) |
| |
soci
Registered: Sep 2003 Posts: 480 |
Should have checked earlier but the loading and $dd00 manipulation does not happen at the same time so it could be something else. |
| |
JackAsser
Registered: Jun 2002 Posts: 2014 |
Quote: Should have checked earlier but the loading and $dd00 manipulation does not happen at the same time so it could be something else.
Just speculating here. The loader might poll anything while not loading putting it into an illegal stale when manipulating $dd00, even outside loading? or? |
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
somehow i have a dejavu right now =) |
| |
Krill
Registered: Apr 2002 Posts: 2980 |
Quoting JackAsserJust speculating here. The loader might poll anything while not loading putting it into an illegal stale when manipulating $dd00, even outside loading? or? It doesn't poll anything when idle because it's simply not being executed. :) However... writing anything in $00..$ff to $dd00 when not loading requires the config option IDLE_BUS_LOCK to be enabled, otherwise you're still limited to the usual 0..3 range to set the VIC bank. |
| |
Bitbreaker
Registered: Oct 2002 Posts: 508 |
Question is, why would we want to write anything else than $00..$03 to $dd00 in a demo? Stop that expensive and unnecessary masking already :-) |
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
lda fpptable,x
sta $d018
sta $dd00
? |
| |
Bitbreaker
Registered: Oct 2002 Posts: 508 |
ldx #$03
lda fpptable,y
sta $d018
sax $dd00
;-) |
| |
Krill
Registered: Apr 2002 Posts: 2980 |
Right, because you can always afford to waste the X register just for some $dd00 masking :) |
Previous - 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 - Next |