Mirror of CollapseOS
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

15 řádky
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