2019-06-02 14:05:20 -04:00
|
|
|
; Error codes used throughout the kernel
|
|
|
|
|
|
|
|
; The command that was type isn't known to the shell
|
|
|
|
.equ SHELL_ERR_UNKNOWN_CMD 0x01
|
|
|
|
|
|
|
|
; Arguments for the command weren't properly formatted
|
|
|
|
.equ SHELL_ERR_BAD_ARGS 0x02
|
|
|
|
|
2019-06-04 11:53:02 -04:00
|
|
|
.equ BLOCKDEV_ERR_OUT_OF_BOUNDS 0x03
|
|
|
|
.equ BLOCKDEV_ERR_UNSUPPORTED 0x04
|
|
|
|
|
2019-10-30 16:59:35 -04:00
|
|
|
; IO routines (GetB, PutB) returned an error in a load/save command
|
2019-06-02 14:05:20 -04:00
|
|
|
.equ SHELL_ERR_IO_ERROR 0x05
|
|
|
|
|