work on interrupts

This commit is contained in:
Kyle Cardoza 2024-03-31 15:01:49 -04:00
parent e23f5bae39
commit d466a86b54
1 changed files with 9 additions and 0 deletions

View File

@ -652,6 +652,15 @@ cop_ioctl:
; structure of the kernel. This allows the shell to be unloaded when running anoter
; program, and to restore its state when that program exits.
;
; Internally, the kernel loads the environment from a serialized data file on SD,
; called `shell.env`. This file consists of string keys and values, one each per
; line, delineated by the `:=` character sequence. String keys are case-sensitive.
; The SDK will provide library functions for managing the environment.
;
; The kernel also uses the data in the shell environment to determine which program
; is loaded into memory as the shell -- rather than re-read the shell binary from
; SD every time, it caches the PGZ file in memory and unpacks it as needed.
;
; Arguments: None
; Return Value:
; A: Environment bank