Page 2 of 2

Posted: Tue Jan 29, 2013 7:18 pm
by Chilly Willy
Very handy address for assembly folk:
http://sourceware.org/binutils/docs-2.22/as/index.html

... and putting an array into rom in assembly is VERY easy - just change the section:

Code: Select all

    .text

/* everything is now in rom, be it code or data */

    .word 0,0,0,0
    .word 0,0,0,0
...

    .data

/* everything is now in ram, be it code or data */


Posted: Thu Jan 31, 2013 4:53 pm
by oofwill
Thanks, i will study with attention :)