This is to update the last version of AdvSkelVic65 with some bug fixes. The following are the bugs that this is supposed to fix: * The PET target was displaying garbage when printing compressed strings. This bug was caused by not switching the character definitions as needed by PrintTok, the mechanism that prints compressed strings. This is needed because, otherwise, capital letters would be inter- preted as tokens. * When printing valid exits from a room and using text compression, on the PET target, the exits, which use upper-case, print the wrong symbol. I needed to switch to the regular PETSCII key assignments just for them. * When targeting 32k cartridges and using text compression, some messages stored in the main bank were not printed properly. This is caused by using a function that prints from the auxilliary bank instead of one that prints from the main bank. This was solved but at the cost that such messages can't be compressed. PrintTok has a version that can support both main memory and auxilliary memory, but that version is not used here. * The disk-based C16 target occasionally crashed. This was caused by using the Cubbyhole optimization technique and having one extra block overwrite two bytes needed by the kernal to display to the screen. To install these bug fixes, simply extract these files to their own folder and replace the .c files in the original distrbution with the same names as these with these. The documentation also neglected to mention that the first room as included in the code showed an example of how to use PrintTok to display compressed strings. It shows how to tokenize repeated text snippets. For more information, read the printtok-002.c file included in the main distribution.