Re: [U-Boot] Use of the go command

2019-09-11 Thread Wolfgang Denk
Urg... > I call the function by using > go #address Go is supposed to be used with standalone programs only. > My question is now: Is it safe to use the go command to execute > U-boot functions or do I miss something here? You are invoking undefined behaviour. Best regards, Wolfgang Denk

[U-Boot] Use of the go command

2019-09-11 Thread Herburger, Gregor
mov r3, r0 e1a1mov r0, r1 e1a01002mov r1, r2 e12fff13bx r3 so instruction set is exchanged. This seems to work the function returns and returns back to the hush-shell. My question is now: Is it safe to use the go command to execute U-boot functions