Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. MEMORY {
  2. head: org=0x000000, len=0x200
  3. init: org=0x000200, len=0x800
  4. mgl: org=0x000A00, len=0x800
  5. lib: org=0x001200, len=0x20000
  6. code: org=0x021200, len=0x0DEE00
  7. res: org=0x100000, len=0x0FFFFE
  8. }
  9.  
  10.  
  11. SECTIONS {
  12. header: { *(header) } >head
  13. gameinit: { *(gameinit) } >init
  14. mainloop: { *(mainloop) } >mgl
  15. library: { *(library) } >lib
  16. main: { *(main) } >code
  17. resource: { *(resource) } >res
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement