Simple mandelbrot generator (fx7700 and better) MAde bY LaZy Slow but nice! I just happened to notice that there's no mandelbrot routine for the fx7700 on this otherwise great page I've divided this one in two programs. ***Prog 1*** Goto 0 ;These are to speed up the Lbl 1 ;main loop 16 ->N ;# of iterations (change to a lower number if 0 ->G~H ; you think it's too slow) Prog 2 ;Call the iteration routine I+E ->I I<=B =>Goto 1 A ->I J+F ->J J<=0 =>Goto 1 ;This line could also be: J<=D =>Goto 1 Goto 9 ;(See note in prog 2) Lbl 0 ;Here we make some inits... -2 ->A 1.5 ->B -1.2 ->C 1.2 ->D Range A,B,0,C,D,0 Plot 0,0 (B-A)/96 ->E ;# of pixels on x-axis (96 for fx7700) (D-C)/64 ->F A ->I C ->J Goto 1 Lbl 9 ;End of prog ***Prog 2*** Lbl 0 G^2-H^2+I ->K ;Who said that fx7700 doesn't handle 2GH+J ->H ;complex numbers? :) G^2+H^2>4 =>Goto 1 K ->H Dsz N Goto 0 Plot I,J Plot I,-J ;I'm mirroring the fractal to double the speed Lbl 1 ;If you want to change the coordinates so that ;Ymin doesn't equal -Ymax, please remove this line ************ ;and change the line suggested in prog 1 That's it! Have fun! Oh, if something's wrong here, please let me know! E-mail: gyi95tan@blg.du.se