mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-09 01:38:05 +11:00
549cf74e9d
Forth-ification of Collapse OS goes forward. What will happen is that assembly code in apps/ will become Forth code. The concept of an assembler code library will become obsolete. However, Forth's core use some of that code. To facilitate the transition, I'm inlining that code directly in Forth's code.
11 lines
172 B
NASM
11 lines
172 B
NASM
.inc "user.h"
|
|
jp forthMain
|
|
|
|
.inc "core.asm"
|
|
.equ FORTH_RAMSTART RAMSTART
|
|
.inc "forth/main.asm"
|
|
.inc "forth/util.asm"
|
|
.inc "forth/stack.asm"
|
|
.inc "forth/dict.asm"
|
|
RAMSTART:
|