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.

12 lines
311B

  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. ; IO routines (GetC, PutC) returned an error in a load/save command
  7. .equ SHELL_ERR_IO_ERROR 0x05