16 lines
184 B
NASM
16 lines
184 B
NASM
; Interrupt table and routines
|
|
INCLUDE dos_layer.asm
|
|
|
|
org 0x100
|
|
INCLUDE brainfuck_compiler_v1.asm
|
|
|
|
prog:
|
|
INCLUDE hello_9086.bf.asm
|
|
|
|
|
|
output_program:
|
|
|
|
.ORG 0xFFF0
|
|
MOV AX,#0x0100
|
|
JMP AX
|