diff options
Diffstat (limited to 'src/include/symbols.h')
-rw-r--r-- | src/include/symbols.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/symbols.h b/src/include/symbols.h index 5b92899cee..fc9ef21ecf 100644 --- a/src/include/symbols.h +++ b/src/include/symbols.h @@ -68,6 +68,10 @@ extern u8 _eprogram[]; /* _<stage>_size is always the maximum amount allocated in memlayout, whereas * _program_size gives the actual memory footprint *used* by current stage. */ +extern u8 _decompressor[]; +extern u8 _edecompressor[]; +#define _decompressor_size (_edecompressor - _decompressor) + extern u8 _bootblock[]; extern u8 _ebootblock[]; #define _bootblock_size (_ebootblock - _bootblock) |