mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 10:28:07 +11:00
f4b6c7637d
scas, it's not needed any more.
26 lines
456 B
NASM
26 lines
456 B
NASM
.inc "user.h"
|
|
|
|
; *** Overridable consts ***
|
|
; Maximum number of lines allowed in the buffer.
|
|
.equ ED_BUF_MAXLINES 0x800
|
|
; Size of our scratchpad
|
|
.equ ED_BUF_PADMAXLEN 0x1000
|
|
|
|
; ******
|
|
|
|
.inc "err.h"
|
|
.org USER_CODE
|
|
|
|
jp edMain
|
|
|
|
.inc "lib/util.asm"
|
|
.inc "lib/parse.asm"
|
|
.equ IO_RAMSTART USER_RAMSTART
|
|
.inc "ed/io.asm"
|
|
.equ BUF_RAMSTART IO_RAMEND
|
|
.inc "ed/buf.asm"
|
|
.equ CMD_RAMSTART BUF_RAMEND
|
|
.inc "ed/cmd.asm"
|
|
.equ ED_RAMSTART CMD_RAMEND
|
|
.inc "ed/main.asm"
|