Move uninitialised .data16 variables to .bss16; saves around 2000

bytes of useless zeroes in the final image.
This commit is contained in:
Michael Brown
2007-07-16 13:22:12 +01:00
parent 389204713f
commit 6d2e4e719c
6 changed files with 10 additions and 10 deletions

View File

@@ -136,7 +136,7 @@ undinet_function_name ( unsigned int function ) {
* Used as the paramter block for all UNDI API calls. Resides in base
* memory.
*/
static union u_PXENV_ANY __data16 ( undinet_params );
static union u_PXENV_ANY __bss16 ( undinet_params );
#define undinet_params __use_data16 ( undinet_params )
/** UNDI entry point
@@ -144,7 +144,7 @@ static union u_PXENV_ANY __data16 ( undinet_params );
* Used as the indirection vector for all UNDI API calls. Resides in
* base memory.
*/
SEGOFF16_t __data16 ( undinet_entry_point );
SEGOFF16_t __bss16 ( undinet_entry_point );
#define undinet_entry_point __use_data16 ( undinet_entry_point )
/**