5.1.3 .memory name, size(nn) [, origin(aa)]

Define an external memory region for allocation by the linker. Sections may be assigned to region name by use of the memory section attribute.

Example

        ; define an external memory region
        .memory _memory1, size(8192), origin(0)
        ; allocate a section in external memory
        .section mem1_sec1,memory(_memory1)
        .global _mem1_array1
_mem1_array1:
        .skip 50