Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
384B

  1. ; Error codes used throughout the kernel
  2. ; The command that was type isn't known to the shell
  3. .equ SHELL_ERR_UNKNOWN_CMD 0x01
  4. ; Arguments for the command weren't properly formatted
  5. .equ SHELL_ERR_BAD_ARGS 0x02
  6. .equ BLOCKDEV_ERR_OUT_OF_BOUNDS 0x03
  7. .equ BLOCKDEV_ERR_UNSUPPORTED 0x04
  8. ; IO routines (GetB, PutB) returned an error in a load/save command
  9. .equ SHELL_ERR_IO_ERROR 0x05