1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 09:08:46 +10:00
collapseos/apps/ed/glue.asm
2019-07-13 21:08:16 -04:00

17 lines
293 B
NASM

#include "user.h"
#include "err.h"
.org USER_CODE
jp edMain
#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"