Update all prefixes currently referring to _load_size to include a

compressor fixup section.
This commit is contained in:
Michael Brown
2007-07-16 17:17:26 +01:00
parent 0929142a15
commit 84551d485e
6 changed files with 61 additions and 21 deletions

View File

@@ -269,6 +269,12 @@ SECTIONS {
*/
_text16_size_pgh = ( ( _text16_size + 15 ) / 16 );
_data16_size_pgh = ( ( _data16_size + 15 ) / 16 );
/*
* Load sizes in paragraphs and sectors. Note that wherever the
* _load_size variables are used, there must be a corresponding
* .zinfo.fixup section.
*/
_load_size_pgh = ( ( _load_size + 15 ) / 16 );
_load_size_sect = ( ( _load_size + 511 ) / 512 );
}