Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
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