2837xD_RAM_IPC_lnk_cpu2.cmd 922 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Linker map for Soprano Shared Memory. */
  2. MEMORY
  3. {
  4. PAGE 0 : /* Program memory. This is a legacy description since the C28 has a unified memory model. */
  5. PAGE 1 : /* Data memory. This is a legacy description since the C28 has a unified memory model. */
  6. CPU2TOCPU1RAM : origin = 0x03F800, length = 0x000400
  7. CPU1TOCPU2RAM : origin = 0x03FC00, length = 0x000400
  8. }
  9. SECTIONS
  10. {
  11. /* The following section definitions are required when using the IPC API Drivers */
  12. GROUP : > CPU2TOCPU1RAM, PAGE = 1
  13. {
  14. PUTBUFFER
  15. PUTWRITEIDX
  16. GETREADIDX
  17. }
  18. GROUP : > CPU1TOCPU2RAM, PAGE = 1
  19. {
  20. GETBUFFER : TYPE = DSECT
  21. GETWRITEIDX : TYPE = DSECT
  22. PUTREADIDX : TYPE = DSECT
  23. }
  24. }
  25. /*
  26. * ===========================================================================
  27. * End of file.
  28. * ===========================================================================
  29. */