Okay, ASM68K giving me some trouble

http://uploading.com/files/37ef6da3/PROJECT.7z/

That is what I have going for a project right now, just getting everything organized before I really start on the code. I'm having a problem though, it keeps saying _getjoy6 is not defined, even though it is in UTIL.H. Can anyone help me? (P.S. My reasoning for using the assemblers/code I am is because I want to try to write a game the way Sega people would. I know they would actually use SNASM68K and others, but I can't seem to find a SNASMZ80, so I am using the MegaCD PsyQ set to stay organized, with utility libraries from the 32X sdk, modified for Mega Drive.)
 
Since you include UTIL.H after HEADER.I its contents is not visible to the code in HEADER.I. Change the order of your includes to satisfy the referential dependencies, or if ASM68K supports it you can try multi-pass assembly.
 
Back
Top