I was just checking out a retro computer page on G+ and a guy had posted about using BASIC to build a Mandelbrot set on a BBC Computer emulator.
I checked out the link to the original site http://rosettacode.org/wiki/Mandelbrot_set and they had a DEC BASIC-PLUS/PDP-11 version. So I fired up my Clone and converted the program to Microsoft MBASIC.
I have to say it doesn't look as nice as the BBC version, but hey it works!
10 X1=59:Y1=21
20 I1=-1:I2=1:R1=-2:R2=1
30 S1=(R2-R1)/X1:S2=(I2-I1)/Y1
40 FOR Y=0 TO Y1
50 I3=I1+S2*Y
60 FOR X=0 TO X1
70 R3=R1+S1*X:Z1=R3:Z2=I3
80 FOR N=0 TO 30
90 A=Z1*Z1:B=Z2*Z2
100 IF A+B>4 THEN GOTO 130
110 Z2=2*Z1*Z2+I3:Z1=A-B+R3
120 NEXT N
130 IF N=31 THEN PRINT " "; ELSE PRINT CHR$(62-N);
140 NEXT X
150 PRINT
160 NEXT Y
170 END
10 WIDTH 132
20 X1=131:Y1=59
30 I1=-1:I2=1:R1=-2:R2=1
40 S1=(R2-R1)/X1:S2=(I2-I1)/Y1
50 FOR Y=0 TO Y1
60 I3=I1+S2*Y
70 FOR X=0 TO X1
80 R3=R1+S1*X:Z1=R3:Z2=I3
90 FOR N=0 TO 30
100 A=Z1*Z1:B=Z2*Z2
110 IF A+B>4 THEN GOTO 140
120 Z2=2*Z1*Z2+I3:Z1=A-B+R3
130 NEXT N
140 IF N=31 THEN PRINT " "; ELSE PRINT CHR$(62-N);
150 NEXT X
160 PRINT
170 NEXT Y
180 END
For those who really don't want to wait for this to finish (over an hour), here's a spoiler: https://i.imgur.com/PTgJxh7.png
I think the best size is 131x41 (based on the larger terminal size of 132x43), and this is the size I've actually settled on. I only did the massive 1 because I was sitting at work, on a conference call and bored out of my mind.
You really need to change everything to get a good zoomed image. I'd suggest you check out the link I posted in my original post, as it has links to the mathematics of fractals. All of these tweaks are the reason I've actually been using BASIC not Assembler, plus to be perfectly honest I like how long they take in BASIC. Something to watch drawing in (slowly) on a remote terminal at work, while I'm configuring an Oracle server, or Cisco router.
Next step for me is to see how long it takes to generate a Julia Set.