1
0
mirror of https://github.com/cc65/cc65.git synced 2025-02-21 20:29:17 +00:00
cc65/libsrc/apple2/dir.inc

16 lines
447 B
PHP
Raw Normal View History

.struct DIR
FD .word
ENTRY_LENGTH .byte
ENTRIES_PER_BLOCK .byte
FILE_COUNT .word
CURRENT_ENTRY .byte
.union
BYTES .byte 512
.struct CONTENT
PREV_BLOCK .word
NEXT_BLOCK .word
ENTRIES .byte
.endstruct
.endunion
.endstruct