Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 452 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 452 Bytes

Mandelbrot-Area-x86-Assembly

This repository contains x86 assembly code which approximates the area of the Mandelbrot set.

Requirements

This code requires nasm and gcc to assemble and compile, respectively.

How to Run

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