9086/boot_code/brainfuck_compiled.asm

23 lines
304 B
NASM
Raw Normal View History

2023-03-14 07:20:30 +00:00
; Interrupt table and routines
org 0x100
output_program:
org 0xF800
mov sp,#SMALL_STACK
call INIT_INT_VECT_TABLE
INCLUDE brainfuck_compiler_v1.asm
SMALL_STACK:
INCLUDE dos_layer.asm
prog:
2023-03-03 19:36:28 +00:00
INCLUDE hello_9086.bf.asm
.ORG 0xFFF0
MOV AX,#0xF800
JMP AX
.ORG 0xFFFF
DB 0x00 ;Make sure a full 64KiB image