Documentation of kernel API

This commit is contained in:
Kyle J Cardoza 2024-07-08 23:31:07 -04:00
parent 5d151c4e09
commit 09cfba0263
1 changed files with 6 additions and 5 deletions

View File

@ -18,11 +18,12 @@ successful. Any other value will indicate some specific error.
## 0x00: Terminate with Error Code
Arguments:
C: 0x00
X: Error code
- C: 0x00
- X: Error code
Return Values:
This call does not return.
- This call does not return.
This call exits the calling program, setting the exit status code
for the system on its way out. Program control will be returned to
@ -31,10 +32,10 @@ the command shell.
## 0x01: Console Input
Arguments:
C: 0x01
- C: 0x01
Return Values:
C: Character read from stdin
- C: Character read from stdin
This call reads one character from standard input. If there is no character
ready, this call waits until there is one. The read character will also be