[A83] Re: 83 help


[Prev][Next][Index][Thread]

[A83] Re: 83 help




About the sprites, you most likely have it in code wrong, make sure it is 
setup in this format:
.db %11111111,%10101010
With a comma in between,no spaces, etc.  Don't forget the second %.  Remeber 
that c = width/8.  paste some code in your mail so we can see.

About the two bit register, the only way I can think of is to decrease it by 
300 and compare it to 0 by doing:
ld de,-300
add hl,de
ld a,h
or l
jr z,its_300

I think the ld de,-300 works, but if not, just use a sbc or something 
instead.  That should work, or I could be completely off.

-joel