| |
Zyron
Registered: Jan 2002 Posts: 2381 |
"Colour bug" on old c64 not emulated in Vice?
I remember that doing something like this
lda #col
sta $0286
jsr $e544
will work on a new c64, but on the old model $d800- would get the same colour as $d021 so no chars will be visible.
I've tried this in Vice v2.3 but no matter what setup I choose I can't reproduce the bug.
I've tested with Super Music since I remember clearly that it did not display any text on my old c64. |
|
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
you have to use an old kernal rom to get that bug (vice uses the latest) |
| |
iAN CooG
Registered: May 2002 Posts: 3194 |
use -kernalrev 0 from cmdline and the rom will be patched, you'll see the bug. (I wonder why only rev 0 is supported and not 1 or 2 but ok, for those exact revisions you'll just have to provide the roms) |
| |
Zyron
Registered: Jan 2002 Posts: 2381 |
Thx Ian! |
| |
Skate
Registered: Jul 2003 Posts: 494 |
I tried "-kernalrev 0" command line option and nothing seems to change for me. it always acts like a new ROM. missing rom files? any ideas? (platform: windows, vice v2.3). |
| |
iAN CooG
Registered: May 2002 Posts: 3194 |
dunno, works here, vice.log shows even the addresses patched
Loading system file `C:\C64\VICE\C64\kernal'.
C64MEM: Kernal rev #3.
Installing ROM patch for revision #0:
E42D (3 bytes)
E477 (54 bytes)
E4C8 (21 bytes)
E535 (1 byte)
E57C (30 bytes)
E5EF (1 byte)
E5F4 (2 bytes)
E622 (2 bytes)
EA07 (12 bytes)
ECD9 (14 bytes)
EF94 (3 bytes)
F0D8 (15 bytes)
F387 (1 byte)
F4B7 (1 byte)
F5F9 (1 byte)
F81F (1 byte)
F82C (1 byte)
FF80 (1 byte)
FFF8 (2 bytes)
Patch installed.
you can also try from vice.ini
KernalName="kernal"
BasicName="basic"
KernalRev="0"
|
| |
chatGPZ
Registered: Dec 2001 Posts: 11386 |
ah, i almost forgot about that redundant option.... dont rely on it being there =P
skate: it only works if the kernal currently used is the rev3 one that comes with vice, if its a different one the patches wont get applied. |
| |
Skate
Registered: Jul 2003 Posts: 494 |
@iAN CooG: it's really weird because i can see the same lines at the log file and vice.ini automatically changes by command line (-kernalrev seems to make the change permanantly, not temporary) but result is the same at my side. I check the given addresses E42D, E477, E4C8, E535 etc. and nothing seems to be different between rev0 and rev3. I don't know why it doesn't work even the log file shows the changed addresses and says "Patch installed".
@Groepaz: My vice version is downloaded from viceteam.org and files are completely untouched. Also log file says;
Loading system file `G:\Scene\C64\WinVICE\C64\kernal'.
C64MEM: Kernal rev #3.
Installing ROM patch for revision #0:
E42D (3 bytes)
E477 (54 bytes)
...
I tried to find if any extra settings are causing this problem like some cartridge, REU, C64 model, ROM settings etc. but everything seems to be at the default settings. I'll try the same thing at work tomorrow to see if it is specific to my computer setup at home or am I the one who fucks up at some point. :)
Btw, other than examining the memory from the monitor, I of course tried the code piece at the first post and it always changed the cursor color like the new models. |
| |
Zyron
Registered: Jan 2002 Posts: 2381 |
Quote:I of course tried the code piece at the first post and it always changed the cursor color like the new models.
Yes, it does change the cursor colour. To see the actual bug you need to extend the code to something like this:
1000:
lda #$07
sta $0286
jsr $e544
ldx #$00
loop
lda $1000,x
sta $0400,x
inx
bne loop
rts
|
| |
Skate
Registered: Jul 2003 Posts: 494 |
@Zyron: Thanks. Now I got it, finally. :)
But still one thing remains. Why don't i see the patched areas given in the vice.log file when I check from monitor? For example 3 bytes at $e42d looks like
20 1e ab
for both rev0 and rev3 kernals.
Is there any chance that i see rev3 from monitor even if it's patched at the background (doesn't make sense to me actually)? That was the main reason i got confused, since both ROMs looked similar at certain points from monitor. |
| |
Digger
Registered: Mar 2005 Posts: 437 |
Yeah, I remember one demo that was calling all the coders not to use $E544 to clear/fill the screen, even had a physical ROM (rev. 0) that had it. |
... 4 posts hidden. Click here to view all posts.... |
Previous - 1 | 2 - Next |