Tagged Questions
0
votes
0answers
115 views
PPC MPC5554: Which core to generate code for?
I'm using the ELDK (u-boot) tools (gcc) to compile (assembly) code for the Motorola/Freescale MPC5554 and so far so good :). I just noticed that I can't compile an instruction that I need (mtbucsr) ...
0
votes
1answer
101 views
A dead loop test in uboot
.globl _start
_start: bl dead_loop
ldr pc, _start
ldr pc, _undefined_instruction
ldr pc, _software_interrupt
ldr pc, _prefetch_abort
ldr ...
2
votes
1answer
330 views
the meaning of the following assembly code, help
The following piece of code is from u-boot:
/* Initialize GOT pointer.
** Global symbols can't be resolved before this is done, and as such we can't
** use any global symbols ...