This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

correction in hal/arm/arch/current/src/vectors.s


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]