Re: A82: Keeping high Scores
[Prev][Next][Index][Thread]
Re: A82: Keeping high Scores
In a message dated 97-12-24 12:26:02 EST, you write:
>
> Is this the way to keep high scores in an asm game:
>
> ld hl,HighScore
> ld bc,(thescore) ;thescore is where score is kept
> add hl,bc ;should be ld hl, bc
> HighScore:
> ..db $00
>
> If there is something wrong could someone correct it. How then do I
> go on to store initials.
Ya gotta know the ASCI equivalents, look at one of the programs by Dines, I
forget which.
> Andrew