Re: A86: Where's my bug?
[Prev][Next][Index][Thread]
Re: A86: Where's my bug?
On Wed, 3 Jun 1998 21:20:37 -0500 "Blake Johnson" <johns627@tc.umn.edu>
writes:
> ld (Xcounter),a
>XLOOP:
> ld a,(Xcounter) ;2.5+(x/84), OP1=Xcounter
this isn't the problem, but this is smaller & faster (i think. you also
load hl below, so it works)
ld hl,Xcounter
ld (hl),a
XLOOP:
ld a,(hl)
> ld a,50
> cp b ;if Iterations>100 goto Plot
> call nc, Plot
this could be it: you were counting the other way before, maybe this
should be
call c, Plot
i haven't tested that, but i think that might fix it
-josh
_____________________________________________________________________
You don't need to buy Internet access to use free Internet e-mail.
Get completely free e-mail from Juno at http://www.juno.com
Or call Juno at (800) 654-JUNO [654-5866]
References: