Displaying 1 result from an estimated 1 matches for "dir_offset".
Did you mean:
dhm_offset
2008 Nov 27
1
RFC: COMBOOT API directory calls
...;t think that it would be appropriate
for storing the open directories.
If I create open_dir_t, this is what I think first:
;
; Directory structure. This holds the information for each currently
open directory.
;
struc open_dir_t
dir_sector resd 1 ; Current sector number (0 = structure free)
dir_offset resd 1 ; Current position within dir_sector
dir_sector_start resd 1 ; Starting sector number (for rewinddir()
resd 1 ; Unused; for alignment/future use
endstruc
If I create a new array Dirs, I would think that it should be sized by
another constant MAX_OPEN_DIR, defined by MAX_OPEN_DIR_L...