home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / asm / proglimit < prev   
Text File  |  1992-07-21  |  537b  |  40 lines

  1. ; Return the address of the end of the program code (Image$$RO$$Limit)
  2. ;
  3.  
  4. a1 RN 0
  5. a2 RN 1
  6. a3 RN 2
  7. a4 RN 3
  8. v1 RN 4
  9. v2 RN 5
  10. v3 RN 6
  11. v4 RN 7
  12. v5 RN 8
  13. v6 RN 9
  14. fp RN 10
  15. ip RN 11
  16. sp RN 12
  17. sl RN 13
  18. lk RN 14
  19. pc RN 15
  20.  
  21.         AREA |Proglimit|, CODE, READONLY
  22.  
  23. name
  24.         DCB     "ProgLimit",0
  25.         ALIGN
  26.         DCD     &FF000000 :OR: ( {PC} - name )
  27.  
  28.         IMPORT  |Image$$RO$$Limit|
  29.         EXPORT  ProgLimit
  30.  
  31. ProgLimit
  32.         LDR     a1,Limit
  33.         MOVS    pc, lk
  34.  
  35. Limit
  36.         DCD     |Image$$RO$$Limit|
  37.         ALIGN
  38.  
  39.         END
  40.