# # Comments are allowed in there, using a single # at the start of the line. # # This will be the address from which the memory will be dumped. start 8000aff0 # Setting this up will constraint the binary at this address. # We can have multiples constraints. next2 is one another, and linker will # failer if the constraints do not give the same arrangement. test1 8000b000 next2 8000b070 # Now we define some other external things. outside 8000b0a0 somefunction 8000b0b0 # We can set up the end here, as we could have set it up in the .s file. # The starting address (start_pc) is defined in the .s file, but it could # have been defined here. end 8000b100