Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
histcomp:apple_ii [2024-09-30 22:42] – asdf | histcomp:apple_ii [2024-10-01 06:15] (current) – asdf | ||
---|---|---|---|
Line 276: | Line 276: | ||
20 CALL 768,X% | 20 CALL 768,X% | ||
</ | </ | ||
+ | |||
+ | ==== Generate the Mandelbrot set ==== | ||
+ | Useful as a benchmark. The computer must be in 80-column mode for it to display properly. | ||
+ | |||
+ | <code basic> | ||
+ | 10 FOR Y=-12 TO 12 | ||
+ | 20 FOR X=-39 TO 39 | ||
+ | 30 CA=X*0.0458 | ||
+ | 40 CB=Y*.08333 | ||
+ | 50 A=CA | ||
+ | 60 B=CB | ||
+ | 70 FOR I = 0 TO 15 | ||
+ | 80 T=A*A-B*B+CA | ||
+ | 90 B=2*A*B+CB | ||
+ | 100 A=T | ||
+ | 110 IF(A*A+B*B)> | ||
+ | 120 NEXT I | ||
+ | 130 PRINT " "; | ||
+ | 140 GOTO 210 | ||
+ | 200 IF I>9 THEN I=I+7 | ||
+ | 205 PRINT CHR$(48+I); | ||
+ | 210 NEXT X | ||
+ | 220 PRINT | ||
+ | 230 NEXT Y | ||
+ | </ | ||
+ | |||
===== Resources ===== | ===== Resources ===== | ||
* [[https:// | * [[https:// | ||
Line 288: | Line 314: | ||
[(a2eenhpg> | [(a2eenhpg> | ||
[(Sather1985> | [(Sather1985> | ||
+ | [(usingprodos> | ||
+ | [(allpinoutsa2> | ||
~~REFNOTES~~ | ~~REFNOTES~~ |