From e733427e3b47cf7849161f0a5fe00c13cc89755f Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Thu, 1 Apr 2010 03:10:02 +0000 Subject: [PATCH] fixed an alignment problem on 64 bit archs --- simulator/elf_x86_64.x | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simulator/elf_x86_64.x b/simulator/elf_x86_64.x index 4f4086a..ab1b5b5 100644 --- a/simulator/elf_x86_64.x +++ b/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__ = .);