17 lines
202 B
NASM
17 lines
202 B
NASM
; Interrupt table and routines
|
|
INCLUDE dos_layer.asm
|
|
|
|
ORG 0x100
|
|
mov sp,#STACK
|
|
INCLUDE brainfuck_interpreter_v0.asm
|
|
|
|
.BLKB 200
|
|
STACK:
|
|
|
|
prog:
|
|
INCLUDE hello_9086.bf.asm
|
|
|
|
.ORG 0xFFF0
|
|
MOV AX,#0x0100
|
|
JMP AX
|