#87003 - loading - Sun Jun 11, 2006 10:49 am
if i want to run a c program from like 0x2300000 instead of the standart adress and use libnds how would i do that?
if i have had a simple assembler source i'd type
arm-elf-as -o myasm.o myasm.s
arm-elf-ld -Ttext 0x02300000 -o myasm.elf myasm.o
arm-elf-objcopy -O binary -S myasm.elf myasm.bin
but how to do something similar with all these complex build scripts and stuff? Any simple way to do that?
if i have had a simple assembler source i'd type
arm-elf-as -o myasm.o myasm.s
arm-elf-ld -Ttext 0x02300000 -o myasm.elf myasm.o
arm-elf-objcopy -O binary -S myasm.elf myasm.bin
but how to do something similar with all these complex build scripts and stuff? Any simple way to do that?