Chameleon Core Bugs

From IndividualComputers
Jump to: navigation, search

For the list of known bugs in the menu system, look at Chameleon Menu Bugs

Contents

known bugs and limitations

base

The following are related to the most important core components, meaning everything required for proper operation of the c64 (even) in cartridge mode and/or the VIC screen.

Reset logic

  • there is a problem with the Reset- and/or Freezer Logic that shows as follows:
    • enable "Reset goes to Menu"
    • use F3 in main menu to reset to basic (or start a cartridge from the file browser - probably anything that ends up in resetting by writing $A6 to $d0fe)
    • use the menu button to go back to menu
    • use F3 again. it will now briefly reset and immediatly go back to menu. occasionally it will even reboot the core.

RAM

  • some tests/programs that rely on the initial RAM contents may randomly not work as expected. This is not a bug and may happen on a real C64 too. At powerup the RAM is initialized with a pattern that will make many such programs work, however due to the nature of this problem it can not be fixed 100%.
Workaround: before starting the program either powercycle, or use the monitor or action replay to fill the memory with a constant value. YMMV.

CPU

Severity: normal - Note: the respective tests fail also on x64 - so this might not actually be as critical as we thought
sei, php, cli, plp, cli   ; $78, $08, $58, $28, $58 (*8)

use analyse.c for comparing the dumps saved by record6.prg, record6b.prg, record7.prg, record7b.prg etc

dualcpu core comparison stops with test6.prg:

4d00 10 BA:0 1 FFC2 65 1 0A41    IR:78 PC:0A40 A:19 X:00 Y:02 S:F0 --1--IZC
4d01 10 BA:1 1 0A41 08 1 0A41    IR:78 PC:0A41 A:19 X:00 Y:02 S:F0 --1--IZC
4d02 10 BA:1 1 0A41 08 1 0A41    IR:08 PC:0A41 A:19 X:00 Y:02 S:F0 --1--IZC
4d03 10 BA:1 1 0A41 08 1 0A42    IR:08 PC:0A42 A:19 X:00 Y:02 S:EF --1--IZC
4d04 10 BA:1 0 01F0 0A 0 01F0 37 IR:08 PC:0A42 A:19 X:00 Y:02 S:EF --1--IZC
4d05 10 BA:1 0 01EF 41 1 0A42    IR:41 PC:0A42 A:19 X:00 Y:02 S:EF --1--IZC

simulate on visual6502

Parts of analysis (work in progress)... [1] shows that CLI will continue clearing the interrupt flag while RDY is low. Seems flag updates happens 1 cycle after entering T0+T2 (which in normal execution would be a T1 cycle, the fetch cycle of next instruction). Compare with [2] that runs same sequence without the RDY low in CLI. Now interrupt is one instruction delayed as expected.

dualcpu core comparison stops with test6b.prg (too much to paste...)

simulate on visual6502

Bus timing

There appears to be a problem with data bus timing when the chameleon is used in a C64 that is equipped with an "ARM2SID" SID-Replacement. see here

VIC (bus interface)

These problems also affect the cartridge mode

Severity: normal
Severity: normal
  • (9j/M7) the value fetched by the VIC in "p accesses" does not end up on the "floating bus" like the idle accesses do (fuxxortest/ef2-inst4a.prg)
Severity: normal
  • the lightpen irq delay is always like "new" VIC, even if there is an "old" VIC in the C64 - (lp-trigger/test2.prg)
Severity: cosmetic - This should not be a problem (the difference is one *pixel* only). Special test programs that try to detect the VIC revision this way might be confused however.
  • There seems to exist a strange bus-timing related problem which presumably results in (some) VICII register writes not working as they should. Apparently this problem only shows on VICII with a certain date code (6569R5-2091-15). see this thread.

VIC (VGA Output)

These (only) affect the VGA output, in either operation mode

  • (9i/M7) when RSEL is cleared and then reenabled in line 248, no more characters are displayed in that line (border/vborder2-36.prg cycles $36-$63)
Severity: normal
Severity: low (Caution: use new VIC-II as reference!)
  • color changes should happen one pixel earlier (also makes other tests fail in automatic testing: VICII/lp-trigger/* VICII/lplatency/*)
Severity: cosmetic (Caution: use new VIC-II as reference!)
  • "grey dots" are not actually shown on VGA. instead where the grey dot would be, the NEW color is shown
THIS IS NOT A BUG: - but simply the absence of the grey dot problem. it should look the same as the picture of certain real "new" VIC-II chips that do not show the grey dots either
Severity: normal
Sprites
Severity: low (Caution: dont break krestage 3 :))
Severity: low - does not work in VICE and seems to be inconsistent accross real hardware
Severity: normal

VIC (Emulated)

These are only relevant in standalone mode

Severity: normal
Severity: normal
Severity: normal
Severity: low - this should hardly matter in practise outside test programs

general

The following apply to both cartridge and standalone mode.

Drive Emulation

  • (9l) Bitwise SYNC detection has been disabled temporarily, this makes some G64 images not work, see here
  • (9i) strange problem with the IEC bus that apparently _only_ happens in menu mode. to reproduce connect a real 1541 (drive 8) and enable one emulated drive (9). then go to the file browser and try loading a very long directory from real drive (eg this disk). when the real drive is connected to the C64, loading the directory will hang. when its connected to the breakout cable it will work.
  • (9f) Different speed zones within a track are not supported
Severity: low
Note: correctly supporting different speedzones within a track doesn't seem to be very important - VICE doesn't support it either (with G64), and so far no game could be found that needs it, they all work if the same GCR data is used for all speedzones (so really only the track length matters)
Severity: low
Severity: low (few original titles rely on this) also different drives behave slightly different.
  • changing disk images via menu does not work with some programs. Unfortunately this is not a bug and can not be fixed for all cases.
Workaround: Use the swaplist feature, which should always work.
  • sometimes when a disk image is mounted directly after updating the core, it is reported as being modified when going to the menu system although that is not actually the case. hard to reproduce and seems not to happen when the core was started normally.
Severity: low (it will only happen directly after flashing)
Workaround: enable emulated drives, save settings, and restart the core

note: here are some good comments on the drive internals

VIA
  • (9/M1) (9) some problem with VIA timer A. For some reason the timer stops counting (interrupts/timera.prg)
Severity: normal (Note: powercycle the emulated drive before running timera.prg, reset is not enough)
Severity: normal

Note: here is another VIA implementation that supposedly passed all VICE tests

Cartridge emulation

  • apparently the value read from open i/o is one cycle late. also it is always the idle value, the value from p-accesses is missing. needs investigation.
AR/RR (1/36)
  • "flashing" retro replay does not work (the flash chip is not emulated)
THIS IS NOT A BUG: to update the ROM simply replace it as described in the user manual
Easyflash (32)
  • "flashing" easyflash does not work (the flash chip is not emulated)
THIS IS NOT A BUG: crt images using the easyflash "EAPI" will work, save modified images using the ROM saver
MMC64
  • "flashing" MMC64 does not work (the flash chip is not emulated)
THIS IS NOT A BUG: to update the ROM simply replace it as described in the user manual
REU



Cartridge Mode

The following problems only occur and/or matter in cartridge mode. In cartridge mode the CPU and the bus interface of the VICII are emulated, and the RAM is replaced. (except the colorram, which comes from the C64)

Startup

  • in some configurations copying the C64 ROMs to chameleon memory fails, resulting in a crash when exiting to basic. (This has been reported for some SX64; C64 ASSY250407 rev 3; ...)
Workaround: go to options and turn "copy ROMs from C64" off. If you want to use a custom kernal (like jiffy dos), enable "boot from SD card" and place a suitable rom image on the card (see manual).

Standalone Mode

The following problems only occur and/or matter in standalone mode. In standalone mode the entire C64 system is emulated.

CIA (Emulated)

CIA has some detail issues (also see keyboard problems below). These only apply to standalone mode (in cartridge mode the real CIA is used)

when the timer reload value is 0, the timer is running, and then the timer low byte is rewritten, there is a one cycle difference for some reason
Severity: normal
Severity: low (use "new" CIA setting instead)
Severity: normal
Severity: normal
  • (9j) the behavior of disabling Timer A while enabling Timer B via one instruction is incorrect (dd0dtest/dd0dtest.prg)
Severity: normal
Severity: cosmetic - this isn't really a problem, since the clock would be slightly off on real equipment as well (it depends on the power grid frequency, which goes up and down all the time)

SID (Emulated)

SID emulation is still incomplete:

Severity: low - some SID detection routines might get confused
Severity: low - inaudible
Filter
  • (9) filter characteristics are approximated
Severity: low - this only affects the sound output of the Chameleon itself
  • (9) filter resonance is not implemented
Severity: low - this only affects the sound output of the Chameleon itself

IEC (external)

  • (9d) The timing of the external IEC connector should be 0.4µs faster, see tc64tmng.zip by Jochen Adler (also see this post)
    • Jiffy DOS seems to have problems in some (PAL) setups (it is however also somewhat instable on real PAL setups) (related Forum64 Thread)
Severity: low
Workaround: in cartridge mode use the IEC connector of the C-64
Unfortunately this can not be fixed 100%, at least for cartridge mode, due to the I/O multiplexer getting in the way. However increasing the clock for the multiplexer would make the error smaller. For standalone mode a second multiplexer setup can be used to (likely) remove the problem at least for that, so standalone drive emulation will work properly.
  • (9) there seem to exist problems with using jiffy dos in standalone mode with a real 1541, see here and here.

Keyboard (PS/2)

THIS IS NOT A BUG: This is no problem for most programs (no other existing emulator will simulate this correctly!)
  • BAT (basic assurance test) command from ps/2 keyboard not recognised.
Severity: cosmetic
Workaround: Plug in keyboard before turning power on.

Mouse (PS/2)

  • when mouse emulation is enabled, the respective POTX/POTY values can always be read from both ADC ports

Docking Station Mode

  • The joystick ports work with digital joysticks only
THIS IS NOT A BUG: Due to I/O restrictions 1531, amiga mouse, lightpen and similar hardware can not be used with these ports.
THIS IS NOT A BUG: Due to I/O restrictions even a real C64 keyboard can not be scanned exactly like in a real C64. This is no problem for most programs (no other existing emulator will simulate this correctly!)
  • (9) LEDs on a connected amiga keyboard are currently disabled
    • there seem to be compatibility issues / startup problems which only occur in standalone mode with a docking station.
      • shards of fancy/lft crashes right at the first screen when running on dockingstation, works without. somehow this is related to the IRQ line being reused in dockingstation mode (disabling it "fixes" it)
Severity: low


NTSC specific problems

We mostly develop on PAL right now, which also means PAL gets more testing. Unfortunately not all of the tests in the VICE testbench are available for NTSC right now. We are working on making more tests available.

Severity: normal
Severity: normal
Severity: normal
Severity: low (Caution: use new VIC-II as reference!)
Severity: normal
Severity: normal
Severity: normal
Severity: normal
Severity: normal

specific test programs

The detailed results from running the test programs was moved to a seperate page.


Real world test cases

The following lists a few "real" test cases which were reported to show bugs in one or another way. Please notice that not all and everything that is reported will be added here (it is not useful to have a list of hundred demos that all show the same sideborder bug) and that we will pick a few "hard" or "typical" programs for different scenarios instead.

crashes

  • Pitstop 2 (Mr.X)

(8g/M1) crashes usually around lap 2 (seems predictable) (8h/M1) works

  • Giana Sisters (Pentacle/TWG)

(8g/M1) crashes randomly, sometimes after a long time (not very predictable) (8h/M1) works

  • Cobra (Remember)

(9c) crashes in title screen (9d) works

timing (NTSC)

  • strange problems when using update.prg in cartridge mode on an NTSC c64.

(8f)(8i) screen is blank and/or program hangs at the beginning. (9a) works here

  • Oils Well (Nostalgia)

(8g) "The crane (I don’t know what it is) that you control down the screen, the end of it doesn’t display correctly. As you move, the pipe sprite glitches out and doesn’t show the correct character or graphic. As you move around though, things get out of sync. It thinks the cane is way ahead of itself at times." (8h) fixed by using another VIC-chip

  • press CBM and SHIFT a couple of times in BASIC

(8g) "Whenever I change the character set with the CBM + SHIFT keys, the characters instantly become garbled. (The VIC chip is 6567R8, The board revision is 250425.)" (8h) fixed by using another VIC-chip

  • Super Mario Bros shows artefacts when scrolling (see here)

this is likely related to DMA-delay

VIC

  • Athena++/FLT heavy flickering in the game. Need to examine what causes this (works in cartridge mode) likely related to CIA2 shiftregister NMI

(9j) In the second part (Einstein Picture) some Sprites are missing (fixed with 9k)

  • Cataball +3 (Decibel)

(9d) picture displayer after the intro flickers both on VGA and VIC screen (fixed with 9k)

reproduced the problem in fldscroll/fldscroll.prg
other programs that show the same problem: kattrap.prg topgun/htl.prg jeep command.prg (fixed with 9k)


(9i) broken logo at the top, likely also related to the wrong FLD timing fldscroll/fldscroll.prg (fixed with 9k)

(8e) bugs in intro, VSP effects are screwed up (errors on VIC screen) (fixed with 9k) (8g/m1) bugs in lower border at fade in/out of "crack intro" also on VIC screen. bugs in right sideborder (fixed with 9k) (side2) "no record" multiplexer shows errors at last rasterline of top sprite-row also on VIC screen (also happens in VICE - Bug in the Demo!)

  • Mayhem in Monsterland (Shazam!)

(8e) AGSP timing is screwed up (errors on VIC screen) (8g/M1) works

(6f) stops working after the train-sprayer. The text "there is no other" stays forever and the music stops. Possibly this is caused by the sample which should be played here but can not be heard. (8e) gfx bugs on VIC(!) at top of intro picture after the starfield, gfx bugs (mario part) - likely irq timing related. goes on to end now (8g/M1) works

(6f) intermediate picture is not visible on VGA, intermediate "snapshot" not visible on vga, horizontal raycaster not visible on vga, vector objects not visible on vga. Likely lots of DEN and SpriteEN related stuff :) (8e) upscroller (turn disk) bugs on VIC screen. rest seems to work ok (8g/M1) works

(8f) shows bugs in the intro plasma part (possibly related to CPU irq delay bug?). Disk change does not work due to menu freezer bug (greetings part uses NMI) Endpart crashes after several minutes (?) (8g) crashes early on 1st side (fireworks), 2nd side works but endpart still crashes after a long time (8h/M1) bugs in intro plasma part also on VIC screen. gfx bugs in "discoball scroller" part at the bottom under the scroller on VGA only. no more crashing (9c) works

(9 standalone) First part with rasterbars: Screen is totally broken (9a/M1) first part broken on VIC screen - looks like its the same problem as with CL13. (9c) works (9c) credit parts is also broken (fixed with 9k)

(9b) bugs (also) on VIC screen in the "fast vectors" part, it seems to show idle graphics where it should show normal text (or bitmap?)

moving the timing one cycle fixes it, perhaps same problem as shown in fldscroll/fldscroll.prg (fixed with 9k)

(9b) bugs (also) on VIC screen in the intro part (graphics corruption in the scroller). bugs in scroll-split part on second part (perhaps related to mode switching delay) (fixed with 9k)

(9c) IFLI scroller at the end (after "the end") does not work both in cartridge mode and standalone. (fixed with 9k)

  • Catalypse (MHI)

(7a-dockstation, 8g/M1) starts with wrong colors in the game-intro and has broken sprites. Samples do not play correctly. (the hitmen release of the same game works, so likely some odd init related problem)

(9g/M1) when manually unpacking the first layer of packing using unp64, the resulting binary works - the unpacker does not work on chameleon for some reason. with dualcpu core it works
(9k) it works correctly when loaded manually after "clear memory". might be an odd bug related to the menu system "DMA load".

Drive Emulation

  • Test Drive 2 - the Duel

(9q) Some older cracks only - hangs with black screen after the Accolade screen. Since other releases work, this seems to be related to the loader.

(9c) hangs with black screen shortly after startup. does not work in VICE either -> fixed in VICE r37261. when the stepper coils where changed with motor off and then the motor is turned on, the drive will forcedly step to that respective coil position (two halftracks further in this case, it wants to step to track 6 but right now only steps to track 7)

(9e) hangs with black screen shortly after "girl picture" (interestingly, it actually continues after a long pause)

(9a) hangs at short drum loop after "fake crash" (9b/M1) works

  • Grand Prix Circuit (Nostalgia)

(8) crashes (8g/M1) works

  • Might and Magic 2 (exodus/hotline)

(9b) when starting a game by pressing "s" the game prompts for "please insert your side A disk"... which is wrong because that disk is already inserted. instead it should load for some time and then prompt for "side B" (9c) works note: the exodus/hotline release is broken. it doesnt like cartridges either

(7) starts loading, then steps forth and back between two tracks (8g/M1) starts loading, shows picture and steps between track 27/28 (9d) works

  • The Addams Family (Motiv8)

(9c) crashes when loading (9d) works

  • Emulated drive problems if ID != 8

(8g/M1) "I have discovered a problem with the emulated drives, if their drive ID is not set to 8. The setup is as follows: TC64 in cartridge mode in an old-style C64 One real 1541 as ID 8 on the real IEC bus, one 1541-II, ID 9 TC64 set to emulate two drives as ID 10 and 11 If I use the emulated drives with the fast loader of the RR (3.8P) I get the following problem: Directory listing works. Loading any program results in "?FILE NOT FOUND ERROR". Afterwards the drive hangs (any DOS command hangs until "reset emulated drives" is executed from the menu). This also happens if I switch of the real drives and/or even disable the real IEC bus in the options. It also happens if the drive is set to ID 9. If the drive is set to ID 8 everything works. With the real drive everything works as well (even if ID is != 8). When this happens the second emulated drive also hangs, even though it wasn't used. The real drives (if turned on / enabled) also hang. So somehow the IEC bus (real and internal one) hangs. This also happens if the emulated drives are connected to the real IEC bus via the break-out cable (and options set accordingly, of course)."

i cant reproduce this on 9e Tobias (talk) 01:11, 21 August 2016 (UTC)

  • There is a reproducible problem with FCOPY:

" If there is IEC-bus-connection: normal (no IEC-cable to TC64), 1541-DOS: JiffyDOS: then when pressing F1 or F5 for 'set source/target device' the system often hangs. The problem isn't if the 1541 uses the original CBM-DOS. The problem isn't if the IEC-bus connection is external (with IEC-cable to TC64). PAL-C64, TC-8F, Cartridge-mode, C64-Kernal: S-JiffyDOS, TC-Floppy-devicenumber: 11, 4 floppies (1541-II (8), 1541old (9), 1571 (10), 1581 (12))"

g64

since beta 9f variable track length is supported, which makes many G64 images work.

see the current G64 compatibility list

disk change

(6d)(8e)(8g/M1) disk change doesn't work (both from menu / swaplist + button) (9a works using swaplist)

(8g/M1) disk change doesnt work (menu) (9) works

  • RGB/Offence+FLT+Prosonix (note: it seems that you have to wait for a while until disk change actually works in the turn disk parts. incase nothing happens, just wait a bit and flip through the images once and it will work.)

(9b) disk change does not work (both via menu and swaplist) (9c) partially fixed, 2nd disk change apparently still fails (9d works)

external IEC

Some demos won't work when loaded from external IEC connector:

  • 1991/Booze Design: after "run" just hangs up
  • Cycle1991/Booze Design: crashes after music selection menu
  • Time Machine1991/Booze Design: after "run" hangs up

this is most likely caused by the timing limitations imposed by the IEC multiplexer.

VIC (VGA Output)

(9b) in the "unlimited bobs" part the logo flickers (one frame of the interlaced picture has wrong char/bank?)

NOTE: this looks like it is fetching the ROM charset instead of whatever it should fetch instead. could be a case of using $dd02 instead of $dd00 for switching VICII bank</strike> This assumption is wrong, its not even interlaced originally. Looks more like a timing problem connected to interrupts. (fixed with 9k)

  • +H2k/Plush (to watch side2, load part selector, mount side2, choose "welcome back" from part selector)

(6d) "plush + paint can" gfx screen emptying effect, gfx glitches (6d) "radar" transition effect sideborder flashes (8e) zoomscroll has bugs on top on VIC screen (8g/M1) red screen whipe effect (after "this millenium") bugs on VGA. rest works ok now (9c) works

(8c) Fullscreen sinus scroller part is not displayed on VGA output. seems to be the same problem like in Trick and Treat. (8c,8g/M1)'ghostsprites' (not sure, maybe it's sth. different) appear in the country/flag part on the VGA VIC-II output. Located in the black screen area between the map and the country name. (fixed with 9k)

(6f) glitch in "hires plasma" part, likely sprite related (8g/M1) glitch in multicolor zoomer on side2 (short flicker on VGA). rest seems ok now (9c) works

(6f) sideborder stuff at the beginning not visible on vga, glitch ~line128 in shadebobs part (8g/M1) some flickering at top right of rotzoomer (greets). rest seems to work ok (9c) works

(8c) the scroller-part from Disk (C) is not displayed on VGA output. (8g/M1) works

(6d)music plays but screen is completely blank (6d)music also have some glitches (atleast it had on some tries, random results..) (6f) works!

(6f) First part with the AFLI logo in the middle: Both small upscrollers in lower area have shifted pixels. (7a-dockstation) shifted pixels in the first part (AFLI logo with two upscrollers) (8g/M1) works!

lower border

(8g,8h/M1) in part with rastersplits and 8 sprites over arrows in lower border, those arrows are broken on VGA. (9c) works (8c,8g,8h/M1) End Part is missing bottom (white) rasterbar. (fixed with 9k)

sideborder

(6f) still shows some glitches, for example the slow scrolling S-Hires picture in the beginning. Some scenes have heavy flickering in the side borders (also visible in the note-file which uses a similar effect). Sprite priority/Overlay effect with japanese characters looks wrong on vga (8e) timing screwed up in second scrolling super-hires picture near to the end, vertical black line in right sideborder (picture before end)on VGA. priority effects work ok now (8g/M1) vertical black line in right sideborder (picture before end)on VGA. rest works OK (9/M1) works perfectly

(6f) has (minimally) distorted graphics in the right sideborder while the mirrored "Xenon" logo at the beginning is shown. The zooming picture (after the horizontal (kefrens?) bars) is not visible, the screen is just empty but the demo continues normally after that. (6f) sprite zoomer after horizontal kefrens bars part, likely DEN related (8e) glitches in right sideborder (logo before 3d scroller). oswaldbogar after sprite zoomer (which works now) has gfx bugs on VIC screen at top of text area (8g/M1) glitches in right sideborder (logo before 3d scroller) on VGA. rest works now (9/M1) works perfectly

(8c) Spritevectorlogo in Sideborder Part (Part 4) Multicolorgfx is corrupted on VGA out. (8g/M1) (Part4) sideborder scroller has gap on right side on VGA, multicolor gfx is corrupt (40/38 cols) on VGA (9/M1) works perfectly

(7a-dockstation, 8g/M1) shows a little sideborder-glitch at the left side in the Hires scroller part. rest is ok (9/M1) works perfectly

Collisions

(9e) sprite/sprite collisions do not work (fixed for 9l)

  • The Castles of Doctor Creep

(9i) 4th screen in the tutorial, you can not switch on the machine again see [3] (fixed for 9l)

Cartridge

Ocean (5)

  • Robocop II

(8e) crashes at intro with garbled screen. (8h/M1) works

  • Shadow of the Beast

stays at black screen, game won't start (8h/M1) works

Funplay (7)

  • Power Play

(8e) Microprose Soccer crashes to blank screen after selecting from the crt menu. (8h/M1) works

  • Fun Play

(8e) gfx bugs in Fast Food (8h/M1) works (9g) select "pro tennis simulator", wait until demo starts, when demo ends it crashes to BASIC warmstart. a standalone version (without cart) works, so likely some mapping issue (works in 9k)

Supergames (8)

  • Commodore Arcade (3 in 1)

(8h/M1) Colossus Chess and International Football do not work (9) works

C64GS (15)

  • C64 Games System (disable mouse emulation!)

(8e) Int. Soccer, Klax and Flimbo's Quest crash to Ready prompt after selecting from the crt menu. (8h/M1) works

Easyflash (32)

(8h/M1) test drive II hangs when starting a game. this is caused by the EAPI returning an error (8i/M1) works

(8g/M1) for some strange reason do not start with their menu, but directly one of the games (with no way to get to another) (8h/M1) works

(8g/M1) crashes in decrunching screen immediately after loading. (8h/M1) works

Pagefox (53)

when writing to the cartridge RAM, the write should also go to the C64 RAM. this is not emulated yet. "Quick test: Run Pagefox Cartridge - press 1-key (layout) - press f-key (full format) two times. The displayed page on the left side should be empty now. (because there is no text entered till now). If some kind of graphic crap is displayed there, the bug is still present." (9a works)

REU

  • GEOS (supports up to 2MB)

(8h/M1) RAM drives work (9e) works

  • Wheels (supports up to 2MB)

(8h/M1) crashes at boot (9e) works

  • GEOS megapatch 3 (supports up to 4MB)

(8c) screensaver has to be disabled, it crashes the chameleon immediately. even trying to change this option let the c. crash. and as soon as trying to access the RAM chameleon hangs (configration: standalone, REU 16mb (only 4 supported in mp3), 2 emulated 1541) (8c) megapatch3 won't start on my REU system with only one diskdrive enabled, i disabled all "RAM drives" in mp3, no changes. it crashes with 2 drives enabled as soon as i access the REU (cartridge mode) (8h/M1) crashes at boot (9e) works

(9e) several screens (open border stuff) do not work

(9e) FLI stuff does not work because of transfers being one-cycle late (works in 9j)

  • Elite 128 v2

(9i) when turbo mode is active, REU transfers that are triggered via the $FF00 trigger do not work correctly, see [4] (fixed in 9l)

GEORAM

  • GEOS (supports up to 2MB)

(8h/M1) RAM drives work

  • Wheels (supports up to 2MB)

(8h/M1) RAM drives work

  • GEOS megapatch 3 (supports up to 4MB)

(8c) works in Cart mode, but refuses to use the RAM drives (1541ram), which seems to be normal in mp3. (8h/M1) RAM drives and screensaver work

Note: apparently using the turbo makes things unstable, unsure what is causing that. (maybe loader issues)



CIA (Emulated)

These only apply to standalone mode

  • Hypersports

(8h) first event (swimming) does not end after one minute (CIA TOD alarm bug) (9) works

(9/Standalone) crashes in title screen. somehow related to TOD alarm apparently. (9c) works

(9b) If you press the fire button in the first game screen, the player-sprite flies up to the top of the screen and stays there. Normally, the player-sprite makes only a small jump. this only happens when using the ps/2 keyboard or joystick attached to the dockingstation - it works when using the C64s joystick ports (9c) works

(9b) the game will not start after the trainer settings, it is stuck in an infinite loop, because the CIA SP-interrupt of the "serial shift register" does not occur! (9c) works

(9b) hangs in the "frogger" title screen, it is stuck in an infinite loop, waiting for the TOD seconds register to become 5. (9c) works

SID (Emulated)

These apply only to the sound output of the Chameleon itself:

(6d) samples play only the first fraction of a second, and then no samples along the song. (6f) no samples in intro on emulated sid (8e) samples are VERY silent after some seconds, but they are playing? (8i) works

(6d) features the same song, and there the samples play like they should (load "2-finished! blaa". Previous part doesn't seem to work on Chameleon.) (6f) intro has bugs in right sideborder. Outrun tune plays no samples on emulated sid (no more crashing though) (8e) samples are VERY silent after some seconds, but they are playing? (8i) works

(6f) plays samples by „latching“ current oscillator value by selecting waveform $00 (7) works (9n) apparently broke again (check second part, it is silent)

(6f)(7)(8g/M1) creates custom waveforms with noise generator, which doesnt work (9g) works

(8c) Speech is distorted ("stall warning", "low altitude"). Same when playing .sid file. (works in 9k)

(8c)(8g/M1) plays samples using filters, which does not work (because there are none :)) (8i) works

(8i) in standalone mode play a single event, the sound is broken when the hymn after the event is played

Misc

  • (8d) Beyond Castle Wolfenstein (original disk)
" NTSC C64 - I tested using an original diskette. With the chameleon plugged in turbo on\off, the result was the same. After loading the game, it goes straight into demo mode when it should instead prompt the user with the option of using a keyboard or joystick. After that, it should go to the menu which lets you setup your rank and bunker level. When in demo mode, the RUN\STOP key allows you to quit demo, and bring you back to the first menu. This works but instead of going to the menu it just loads the demo again. When I removed the Chameleon and ran the game, it worked as expected."
  • (9i) Into the Eagles Nest (original disk)
does not load when chameleon is being used

Not actual bugs

Sometimes when bugs are reported it turns out that infact the program in question is broken and the emulation is actually correct - we list them here for reference:

  • the RR ROM (and possibly other programs) detect NTSC when turbo is enabled and video mode is PAL. this is caused by the broken detection inside the C64 kernal ROM.
  • most MMC64 plugins and programs do NOT work on FAT32 formatted sd cards. make sure to use a FAT16 formatted card with the MMC64 emulation if you want to use these plugins/programs!
  • Cartridges made for the C64 Game System (C64GS/System3 format) support joysticks with a second button connected to one of the paddle inputs. For this reason the game may get confused when either a paddle or mouse (real or ps/2) is connected. (for example the C64GS cartridge will skip its menu, last ninja 3 remix will skip its intro and go directly into the game). Look here for instructions on how to convert a joystick to use the second button.
crashes in the first part (Upscroller) - it relies on uninitialized RAM (and will crash randomly on real C64s)
Workaround: choose "clear C64 Memory" in the main menu first, then start the Demo.
crashes randomly on loading - and it does that also when using a real drive.
  • Love by Agony Design
doesn't work with cartridges. Disable the clock-port and/or cartridges
these rely on the screen being cleared with a specific color prior to starting the program and would show wrong colors if not
will always detect 512k REU if a REU is present.
When the falling cubes appear two grey blocks will show up in the upper border, this is caused by the VGA screen showing more scanlines than an average CRT
In the "city with disco ball" part near to the end there is a sprite missing in the top left corner of the disco ball - this is a bug in the actual demo and looks the same on a real C64.
  • Myth: History in the making (cartridge)
starts up with black screen. this is normal, you need to blindly type the following:
SYS (hit spacebar) 3 (hit spacebar) MYTH
  • PRG Files which load below $0400, and thus are unsupported:
    • Buggy Boy (1987)(Elite)[cr The Wild Boys].prg - loads to $0302 (autostart)
Workaround: copy the file to a disk image and then load it from BASIC
  • PRG Files with bugs:
    • A__AP___A (2002)(Ice Team).prg - sometimes graphics are corrupted. this also happens when running it by other means, so its not bug
  • "Advanced Music System" (relies on uninitialized RAM)
hangs in the lenslock screen for some odd reason, see the vice bug here
WORKAROUND: before loading clear RAM with zeros
Personal tools
Namespaces

Variants
Actions
Navigation
Icomp
Print/export
Administration