Mirror of CollapseOS
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

15 linhas
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