mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-09 05:08:06 +11:00
18 lines
317 B
NASM
18 lines
317 B
NASM
#include "user.h"
|
|
#include "err.h"
|
|
.org USER_CODE
|
|
|
|
jp edMain
|
|
|
|
#include "lib/util.asm"
|
|
#include "lib/parse.asm"
|
|
.equ IO_RAMSTART USER_RAMSTART
|
|
#include "ed/io.asm"
|
|
.equ BUF_RAMSTART IO_RAMEND
|
|
#include "ed/buf.asm"
|
|
.equ CMD_RAMSTART BUF_RAMEND
|
|
#include "ed/cmd.asm"
|
|
.equ ED_RAMSTART CMD_RAMEND
|
|
#include "ed/main.asm"
|
|
|