hw: fix assembly alignments

ref #1006
This commit is contained in:
Martin Stein 2013-12-18 16:24:15 +01:00 committed by Norman Feske
parent 722154f0a8
commit 1e7c0c2066
2 changed files with 4 additions and 4 deletions

View File

@ -13,12 +13,12 @@
.section .data
.align 3
.align 2
.global _boot_modules_begin
_boot_modules_begin:
.string "GROM"
.align 3
.align 2
.global _boot_module_headers_begin
_boot_module_headers_begin:

View File

@ -58,14 +58,14 @@
.section .bss
/* kernel stack */
/* kernel stack, must be aligned to an 8-byte boundary */
.align 3
.space 64*1024
.global _kernel_stack_high
_kernel_stack_high:
/* main-thread UTCB-pointer for the Genode thread-API */
.align 3
.align 2
.global _main_thread_utcb
_main_thread_utcb: .long 0