Mirror of CollapseOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
338B

  1. .equ FS_MAX_NAME_SIZE 0x1a
  2. .equ FS_BLOCKSIZE 0x100
  3. .equ FS_METASIZE 0x20
  4. .equ FS_META_ALLOC_OFFSET 3
  5. .equ FS_META_FSIZE_OFFSET 4
  6. .equ FS_META_FNAME_OFFSET 6
  7. ; Size in bytes of a FS handle:
  8. ; * 4 bytes for starting offset of the FS block
  9. ; * 2 bytes for file size
  10. .equ FS_HANDLE_SIZE 6
  11. .equ FS_ERR_NO_FS 0x5
  12. .equ FS_ERR_NOT_FOUND 0x6