When I build this asm code I am gettting following warning-
CODE:
.def _main
.data
In
.int 1,2,3,4,5
Ot
.usect "b array",5*4
.text
_main:
MVK In,A4
MVKH In,A4
mvk Ot,a6
mvkh Ot,a6
MVK 6,B0
repeat:
LDW *A4++,a2
stw a2,*a6++
SUB B0,1,B0
[B0] B repeat
warning: creating output section "b array" without a SECTIONS specification
how do I correct this error?
When I do run the code, my memory locations are updated, but I am getting this error-
TMS320C6713: Error: Memory Map Error: READ access by CPU to address 0x40000, which is RESERVED in Hardware.
I want to know how do I correct these error?
Any guidance would be of great help.
Thanks in Advance