From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ilko Iliev To: ecos-discuss@sources.redhat.com Subject: [ECOS] correction in hal/arm/arch/current/src/vectors.s Date: Wed, 24 Jan 2001 01:42:00 -0000 Message-id: <4.3.2.7.2.20010124102534.00b75b88@mbox> X-SW-Source: 2001-01/msg00393.html I try to run the last snapshot of eCos and I found the following problem: The init_flag is of address 0x2022bcd (AT91EB01 target) and it stay in the loop 1: cmp r1,#0 bne 1b because init_flag was false read - it's a long variable and the address is not aligned. Than I have correct init_flag: .long 0 to init_flag: .balign 4 .long 0 and it's working :-) Ilko