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.

14 lines
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