aboutsummaryrefslogtreecommitdiffstats
path: root/src/programs.asm
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/programs.asm7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/programs.asm b/src/programs.asm
index 6dbc584..7c17fb5 100644
--- a/src/programs.asm
+++ b/src/programs.asm
@@ -133,6 +133,9 @@ ProgDhcp:
SECTION "prog_irc", ROMX[$4000], BANK[32]
ProgIrc:
INCBIN "build/usr/irc.bin"
+SECTION "prog_uptime", ROMX[$4000], BANK[33]
+ProgUptime:
+ INCBIN "build/usr/uptime.bin"
; -----------------------------------------------------------------------------
; PROG_SH (bank 3) - the shell, now written in C (usr/sh.c): parses >/</| and
@@ -237,6 +240,8 @@ ProgramTable::
dw ProgDhcp
db LOW(BANK(ProgIrc)), HIGH(BANK(ProgIrc))
dw ProgIrc
+ db LOW(BANK(ProgUptime)), HIGH(BANK(ProgUptime))
+ dw ProgUptime
ProgramTableEnd::
; -----------------------------------------------------------------------------
@@ -306,4 +311,6 @@ NameTable::
db PROG_DHCP
db "irc", 0
db PROG_IRC
+ db "uptime", 0
+ db PROG_UPTIME
db 0