Documentation of kernel API
This commit is contained in:
parent
09cfba0263
commit
0049bf4830
|
@ -49,11 +49,11 @@ continues waiting for another character to be ready.
|
|||
## 0x02: Console Output
|
||||
|
||||
Arguments:
|
||||
C: 0x02
|
||||
X: Character to output
|
||||
- C: 0x02
|
||||
- X: Character to output
|
||||
|
||||
Return Values:
|
||||
None
|
||||
- None
|
||||
|
||||
This call sends a single chracter to the standard output, which is usually
|
||||
the terminal emulator. The character will be parsed by the terminal emulator
|
||||
|
@ -62,10 +62,10 @@ to handle control characters and escape sequences.
|
|||
## 0x03: Direct Console Input
|
||||
|
||||
Arguments:
|
||||
C: 0x03
|
||||
- C: 0x03
|
||||
|
||||
Return Values:
|
||||
C: Character value or NULL
|
||||
- C: Character value or NULL
|
||||
|
||||
This call does direct (raw) console input; if there is a character ready, it
|
||||
will be read, and if not, NULL will be returned.
|
||||
|
@ -73,11 +73,11 @@ will be read, and if not, NULL will be returned.
|
|||
## 0x04: Direct Console Output
|
||||
|
||||
Arguments:
|
||||
C: 0x04
|
||||
X: Character value
|
||||
- C: 0x04
|
||||
- X: Character value
|
||||
|
||||
Return Values:
|
||||
None
|
||||
- None
|
||||
|
||||
This call does direct (raw) console output; the value supplied will be treated
|
||||
as the value to write to screen memory, and will not be interpreted for terminal
|
||||
|
|
Loading…
Reference in New Issue