fixed an alignment problem on 64 bit archs
This commit is contained in:
parent
57b0bc6948
commit
e733427e3b
|
@ -140,9 +140,10 @@ SECTIONS
|
|||
.data :
|
||||
{
|
||||
*(.data .data.* .gnu.linkonce.d.*)
|
||||
. = ALIGN(16);
|
||||
PROVIDE (_eeprom_start__ = .);
|
||||
*(.eeprom)
|
||||
. = ALIGN(8) ;
|
||||
. = ALIGN(16);
|
||||
PROVIDE (_game_descriptors_start__ = .);
|
||||
*(.game_descriptors)
|
||||
PROVIDE (_game_descriptors_end__ = .);
|
||||
|
|
Loading…
Reference in New Issue