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

@@ -49,7 +49,7 @@ struct e820_entry {
#define E820_TYPE_NVS 4 /**< ACPI NVS memory */
/** Buffer for INT 15,e820 calls */
static struct e820_entry __data16 ( e820buf );
static struct e820_entry __bss16 ( e820buf );
#define e820buf __use_data16 ( e820buf )
/**