Skip to content

A bare metal brainf*ck interpreter written in pure assembly language

License

Notifications You must be signed in to change notification settings

silentenemy/asmbrain

Repository files navigation

asmbrain

A bare metal brainf*ck interpreter written in pure assembly language.

asmbrain screenshot

Assembling

You need fasm to assemble asmbrain.

$ fasm main.asm

The resulting file main.bin is ready executable.

Running in VM

Using QEMU should be okay.

$ qemu-system-i386 -fda main.bin

Running on real hardware

I suppose you know what you do.

Write asmbrain to USB stick:

$ dd if=main.bin of=/dev/sdX bs=512

Now you can boot from your USB stick.