[email protected] writes:
> Does anybody know is there an assembler which I can use on the Freerunner and
> run programs from there via ssh?
At least in debian the following works:
$ apt-get install build-essential
$ cat > hello.s <<EOF
.global main
main:
stmfd sp!, {fp, lr}
ldr r0, =msg
bl puts
ldmfd sp!, {fp, lr}
bx lr
msg:
.asciz "Hello world"
EOF
$ gcc -o hello hello.s
$ ./hello
Hello world
_______________________________________________
devel mailing list
[email protected]
https://lists.openmoko.org/mailman/listinfo/devel