2011-03-21 17:49:03 +00:00
|
|
|
;
|
|
|
|
; Karri Kaksonen, 2011
|
|
|
|
;
|
|
|
|
; A default directory with just the main executable.
|
|
|
|
;
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "lynx.inc"
|
|
|
|
.import __STARTOFDIRECTORY__
|
|
|
|
.import __RAM_START__
|
|
|
|
.import __CODE_SIZE__,__DATA_SIZE__,__RODATA_SIZE__
|
2014-03-19 09:32:44 +00:00
|
|
|
.import __STARTUP_SIZE__,__INIT_SIZE__,__LOWCODE_SIZE__
|
2013-05-09 11:56:54 +00:00
|
|
|
.import __BLOCKSIZE__
|
|
|
|
.export __DEFDIR__: absolute = 1
|
2011-03-21 17:49:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Lynx directory
|
2013-05-09 11:56:54 +00:00
|
|
|
.segment "DIRECTORY"
|
2011-03-21 17:49:03 +00:00
|
|
|
|
|
|
|
__DIRECTORY_START__:
|
|
|
|
off0=__STARTOFDIRECTORY__+(__DIRECTORY_END__-__DIRECTORY_START__)
|
|
|
|
blocka=off0/__BLOCKSIZE__
|
|
|
|
; Entry 0 - first executable
|
|
|
|
block0=off0/__BLOCKSIZE__
|
2014-03-19 09:32:44 +00:00
|
|
|
len0=__STARTUP_SIZE__+__INIT_SIZE__+__CODE_SIZE__+__DATA_SIZE__+__RODATA_SIZE__+__LOWCODE_SIZE__
|
2011-03-21 17:49:03 +00:00
|
|
|
.byte <block0
|
|
|
|
.word off0 & (__BLOCKSIZE__ - 1)
|
|
|
|
.byte $88
|
|
|
|
.word __RAM_START__
|
|
|
|
.word len0
|
|
|
|
__DIRECTORY_END__:
|
|
|
|
|