Re: A86:Need to move a 50 by 14 Sprite
[Prev][Next][Index][Thread]
Re: A86:Need to move a 50 by 14 Sprite
For big sprites, see James' asm page, he wrote a large one I belive for
MK86: http://james.acz.org/
To flash the screen:
FillScreenBlack:
ld hl,$fc00
ld de,$fc01
ld bc,$3ff
ld (hl),c
ldir
; delay here, sprite code, etc...
FillScreenWhite:
ld hl,$fc00
ld de,$fc01
ld bc,$3ff
ld (hl),l
ldir
> My problem is as follows:
>
> I need to move a 50 tall and 14 wide sprite accross the screen while
> alternating with another sprite (Lightning bolt) while this is happening I
> need to flash the screen back and forth every 1/5 second or so (maybe less
> because u cant see) can anyone help here?
>
> (what i basically need is a routine to move a big sprite if u can answer
the
> rest it would help too)
References: