Re: [cc65] odd results

Date view Thread view Subject view

From: BlackJack/Civitas (blackjack_at_civitas64.de)
Date: 2001-02-26 00:23:31


Hi troy,

>I am using windows. Is there an easy way
>for me to apply the ax fixes to CC65?

It just affects the runtime libraries, so recompiling them with the fixed 
sources for the incax*.s should be enough. I just did it. For which target 
OS (C64/128/Apple...) do you need them? I could send them to you.

>unsigned char choiceA(unsigned char);
>
>(a  peice of main)
>}
>    unsigned char carry;
>    carry=(choiceA(0));
>    printf("carry = %d ");

should be: printf("carry = %d ", carry);

>}
>
>unsigned char choiceA(unsigned char)

You forgot to give a name here after "unsigned char"
>}
>    if (more==60)
>        {
>             if (VIC.spr0_y>162)
>                 {VIC.spr0_y=106;}
>             VIC.spr0_y=VIC.spr0_y+4;
>             VIC.spr0_y=VIC.spr0_y+4;
>             ++pmenu;
>             if (pmenu>6)
>                {pmenu=255;}
>        }
>    if (more==1)
>        {
>            *clearkeybuffer=0;
>            VIC.spr_ena=0;
>            return pmenu;
>         }
>}

Is this the whole routine? What is 'more'? Is the second if (more==1) ever 
true?

Ciao,
	Marc 'BlackJack' Rintsch
-- 
_ _____  __  __ _____________________________________________________
 /  __/ /_/  \_\ CiViTAS - "Lameness rulez"
/  /   ____  ____ http://www.civitas64.de
\  \_ / /\ \/ /\ \ mailto:blackjack_at_civitas64.de  
 \___/_/  \__/  \_\ C64 forever...
----------------------------------------------------------------------
To unsubscribe from the list send mail to majordomo_at_musoftware.de with
the string "unsubscribe cc65" in the body(!) of the mail.


Date view Thread view Subject view

This archive was generated by hypermail 2.1.3 : 2001-12-14 22:05:39 CET