[A89] Re: ellipses again


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

[A89] Re: ellipses again




Earlier, TJ gave this code for XORing a VS onto the screen.  
lea $4c00,a0
lea VS,a1
move.w #2999,d0
xorloop:
eor.b (a1)+,(a0)+
dbra d0,xorloop

Unfortunately, I don't know asm.  I'd like to try the VS approach, but I don't know how to use
this code.  I'm pretty sure you write
asm(code...);
but I don't know how to get the memory locations to the asm.  I'd also like to have it only go
through the rectangle that contains the ellipse, not the entire screen.  Even if this means taking
a little extra time defining the memory to read and write to (it won't all be consecutive) I think
it will make up for it.
jeff

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/



References: