Kweepa wrote:I'd like to do a joystick version and an NTSC version.
I suggest you to do just one version for both PAL and NTSC machines with Joy support too.
Has anyone tried playing this on a real Vic20 yet? If so, any problems?
Ok, i've tested it on real PAL machines and it works great, very attractive background music too.
btw there is a little load problem that you may reproduce in vice too.
If you attach the d64 image without start it automatically and try to load the program normally:
LOAD"*",8
It does not work, you need to start it using only this command:
LOAD"*",8,1
I've hacked a bit your file to fix the problem but is better that you fix your sources.
Assuming that you use a text file and DASM simply change the ORG $1000 with ORG $1001 or ORG 4096 with ORG 4097 and remove the first 0 byte
the initial code must be:
Code: Select all
org 4097
byte 11,16,216,7,158,"4109",0,0,0 ; 2008 SYS4109
or
Code: Select all
org $1001
byte $0b,$10,$d8,$07,$9e,"4109",0,0,0 ; 2008 SYS4109
This because an unexpanded basic program starts from 4097/$1001 not from 4096/$1000.
Please note i've used 216,7 / $d8,$07 for 2008 SYS4109 in your code there is 215,7 / $d7,$07 for 2007 SYS4109, i think that 2008 is better for a game made on 2008
PS: I've tested it fastloading the game using my EasyLoad+ from the Mega-Cart too and it works great of course...