aboutsummaryrefslogtreecommitdiffstats
path: root/src/programs.asm
diff options
context:
space:
mode:
Diffstat (limited to 'src/programs.asm')
-rw-r--r--src/programs.asm7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/programs.asm b/src/programs.asm
index fbe6067..180f551 100644
--- a/src/programs.asm
+++ b/src/programs.asm
@@ -115,6 +115,9 @@ ProgNecho:
SECTION "prog_wget", ROMX[$4000], BANK[26]
ProgWget:
INCBIN "c/wget.bin"
+SECTION "prog_chat", ROMX[$4000], BANK[27]
+ProgChat:
+ INCBIN "c/chat.bin"
; -----------------------------------------------------------------------------
; PROG_SH (bank 3) - the shell, now written in C (c/sh.c): parses >/</| and
@@ -207,6 +210,8 @@ ProgramTable::
dw ProgNecho
db LOW(BANK(ProgWget)), HIGH(BANK(ProgWget))
dw ProgWget
+ db LOW(BANK(ProgChat)), HIGH(BANK(ProgChat))
+ dw ProgChat
; -----------------------------------------------------------------------------
; NameTable (ROM0) - command name -> program id, searched by sys_lookup.
@@ -263,4 +268,6 @@ NameTable::
db PROG_NECHO
db "wget", 0
db PROG_WGET
+ db "chat", 0
+ db PROG_CHAT
db 0