This repository contains x86 assembly code which approximates the area of the Mandelbrot set.
This code requires nasm and gcc to assemble and compile, respectively.
To assemble, run the following command:
nasm -f elf32 mandelbrot.asm -o mandelbrot.o;
To compile, run the following command:
gcc -m32 mandelbrot.o -o mandelbrot