9086/boot_code/brainfuck_mandelbrot.asm

23 lines
345 B
NASM
Raw Normal View History

;I got this down to 11428 bytes
org 0x100
output_program:
org 0xC000
mov sp,#SMALL_STACK
call INIT_INT_VECT_TABLE
INCLUDE brainfuck_compiler_v1.asm
SMALL_STACK:;Stack of compiler is at the end of file
INCLUDE dos_layer.asm
prog:
2023-03-03 19:36:28 +00:00
INCLUDE mandelbrot.bf.asm
.ORG 0xFFF0
MOV AX,#0xC000
JMP AX
.ORG 0xFFFF
DB 0x00 ;Make sure a full 64KiB image