• I have following code and can not read data from Data segment
    AREA main, READONLY, CODE EXPORT __main ENTRY __main PROC MOV R0, #0x5 MOV R1, #0X5 CMP R1,R0 ADDNE R3, R1, R0 ldr r0, =Str ldr r1, [r0] add r0, #4 str r1, [r0] endp align AREA myData, DATA , READWRITE...
  • I have following code and can not read data from Data segment
    AREA main, READONLY, CODE EXPORT __main ENTRY __main PROC MOV R0, #0x5 MOV R1, #0X5 CMP R1,R0 ADDNE R3, R1, R0 ldr r0, =Str ldr r1, [r0] add r0, #4 str r1, [r0] endp align AREA myData, DATA , READWRITE...
  • Moving RTX51 Tiny Code and data segments
    I wanted to know how to move the code and data segments of the RTX51 Tiny to specific memory locations. I know how to move regular segments that are created by me using the SEGMENTS Linker Directive...
  • Many small data blocks in CODE segment
    Hi all, In a project we have to use a small amount of static memory in every 2KByte ROM block. This is not normally a problem as the linker tries to fit any code where it can. However, we now many...
  • Moving RTX51 Tiny Code and data segments
    I wanted to know how to move the code and data segments of the RTX51 Tiny to specific memory locations. I know how to move regular segments that are created by me using the SEGMENTS Linker Directive...