home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Include / other / segments.h < prev    next >
C/C++ Source or Header  |  2000-12-21  |  670b  |  24 lines

  1. #ifndef PALM_SEGMENTS_H
  2. #define PALM_SEGMENTS_H
  3. /* First, define generic names for the code segments.  The main
  4.    segment is the only one accessible to the debugger.  */
  5.  
  6. #define DEF_SEGMENT(name) __attribute__ ((section (name)))
  7.  
  8. /* length limit of section names = 8 characters */
  9. #define PALM_SEG_0 "pseg0"
  10. #define PALM_SEG_1 "pseg1"
  11. #define PALM_SEG_2 "pseg2"
  12. #define PALM_SEG_2A "pseg2A"
  13. #define PALM_SEG_2B "pseg2B"
  14. #define PALM_SEG_3 "pseg3"
  15. #define PALM_SEG_4 "pseg4"
  16. #define PALM_SEG_5 "pseg5"
  17. #define PALM_SEG_6 "pseg6"
  18. #define PALM_SEG_7 "pseg7"
  19. #define PALM_SEG_8 "pseg8"
  20. #define PALM_SEG_9 "pseg9"
  21. #define PALM_SEG_10 "pseg10"
  22.  
  23. #endif /* PALM_SEGMENTS_H */
  24.