In my project (MIMXRT1176) i have a file auto-generated , exported directly from the _lib.xls(Library Master Spreadsheet).
the file is .src data file. How can i include this file in compilation. Is it possible by enabling any gcc flag ? or the file require complete modification.
My file looks like
AREA REL,PIC,READONLY,ALIGN=4
EXPORT text
EXPORT txttbl
a EQU 1
b EQU 2
c EQU 4
d EQU 8
;xy must always be the first element in this table
text
base
xy DCW 1
DCB 0
DCB "START",0
DCB "",0
ALIGN 1
zw DCW 2
DCB 0
DCB "** * processing * **",0
DCB "",0
ALIGN 1
.
.
.
.
.
.
.
ALIGN 2
txttbl
DCW xy-base,zw-base
DCW .-base,.-base
.
.
.
END