diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-07-08 19:34:36 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-07-08 19:34:36 -0600 |
commit | 8ab5b63e6954929d49a61173dee8d2dcbf6d73bf (patch) | |
tree | 5537200e3709cb5c15ccf19fd25fb57826f5b4d0 /flashimg | |
parent | 72b9036dc961d9fe7e0e9deb12e87f121a4d0ccf (diff) | |
parent | f6e6d7ccdc63a48988b1ada14718be2a033902b7 (diff) |
Diffstat (limited to 'flashimg')
-rw-r--r-- | flashimg/cpu_main/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/flashimg/cpu_main/main.c b/flashimg/cpu_main/main.c index 40bf81e..4732982 100644 --- a/flashimg/cpu_main/main.c +++ b/flashimg/cpu_main/main.c @@ -37,6 +37,7 @@ #include "usb_keyboard.h" /* 9P files */ +#include <util9p/coroutine.h> #include <util9p/nut.h> #include <util9p/static.h> #include <util9p/uptime.h> @@ -119,12 +120,12 @@ static struct lib9p_srv_file root = STATIC_DIR("harness", API_FILE("flash.bin", flash, .io = &flashio), + API_FILE("proc.txt", coroutine), STATIC_FILE("rom.bin", .data_start = (void*)0x00000000, .data_size = 16*1024), API_FILE("uptime.txt", uptime), // TODO: system.log - // TODO: proc.txt // TODO: cpuinfo.txt // TODO: ctl ), |