1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-10-05 10:30:56 +10:00
collapseos/apps/ed/glue.asm

14 lines
214 B
NASM
Raw Normal View History

2019-07-13 23:57:37 +10:00
#include "user.h"
2019-07-14 01:29:06 +10:00
#include "err.h"
2019-07-13 23:57:37 +10:00
.org USER_CODE
jp edMain
#include "lib/parse.asm"
2019-07-14 01:29:06 +10:00
.equ IO_RAMSTART USER_RAMSTART
#include "ed/io.asm"
2019-07-14 04:01:20 +10:00
.equ BUF_RAMSTART IO_RAMEND
#include "ed/buf.asm"
2019-07-13 23:57:37 +10:00
#include "ed/main.asm"