diff --git a/doc/syscalls.md b/doc/syscalls.md index 8d0be30..6776f01 100644 --- a/doc/syscalls.md +++ b/doc/syscalls.md @@ -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