Browse Source

fixed an alignment problem on 64 bit archs

feature/2015
Christian Kroll 14 years ago
parent
commit
e733427e3b
  1. 3
      simulator/elf_x86_64.x

3
simulator/elf_x86_64.x

@ -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…
Cancel
Save