This repository contains an Assembly language implementation of a Brainfuck interpreter, developed as part of a contest focused on creating the smallest possible .com
executable for DOS.
main.asm
: The main Assembly source code file for the Brainfuck interpreter.
- Write your Brainfuck program into a file.
- Run the Brainfuck interpreter with the Brainfuck program file as an argument.
- The interpreter will read the Brainfuck program and interpret it.
tasm /s /m /n /q /zn main.asm
tlink /3 /t /n /x main.obj
main code.b <input.txt >output.txt