home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / appcl / 55 < prev    next >
Encoding:
Text File  |  1993-01-21  |  3.9 KB  |  79 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!paladin.american.edu!auvm!UCSBVM.BITNET!DWIGHT
  3. Organization: University of California at Santa Barbara
  4. Message-ID: <930121.161534.PST.DWIGHT@UCSBVM>
  5. Newsgroups: bit.listserv.appc-l
  6. Date:         Thu, 21 Jan 1993 16:15:34 PST
  7. Sender:       APPC Discussion List <APPC-L@AUVM.BITNET>
  8. From:         "Dwight M. McCann" <DWIGHT@UCSBVM.BITNET>
  9. Subject:      Re: APPCDEMO assemble under ESA/370 ??
  10. In-Reply-To:  Message of Thu, 21 Jan 1993 16:41:24 EST from <TECHMAN@PACEVM>
  11. Lines: 66
  12.  
  13. On Thu, 21 Jan 1993 16:41:24 EST Abdel said:
  14. >1) - Used vmfsetup to access all necessary disks.
  15. >     Added vtamac and vtambld maclibs to DMSVM CNTRL file
  16. >     Used Vmfasm to assemble Appcdemo
  17. >2) - vmfsetup was done with the 3 vm components. CMS, GCS, and CP and
  18. >     every time an attemp was made to assemble APPCDEMO the same assembling
  19. >     error messages occured:
  20. >      -    Undefined symbol for statments containing:
  21. >                 FLS, FLSVMID,
  22. >
  23. >      - Undefined op code for statments containing:
  24. >                 IUCVINI, IUCVCOM, SHOWCB, BASR, BAS,
  25. >
  26. >  The above listed statments must come from somewhere. Isn't BASR and BAS
  27. >  some assemble op code for VM/XA ONLY ??? I do not know. Anyone knows.
  28. >  What should i  do to be able to assemble APPCDEMO. Any MACLIB or MACROS
  29. >  I do not know about. Is there any documentation anywhere that can direct
  30. >  me in assembling APPC Programs ?
  31.  
  32. Abdel -
  33.    I can't address the implications of VMFSETUP on your system, so I can't
  34. speak to that.  I can make the following observations off the top of my head:
  35.  
  36. BAS and BASR are XA instructions, which implies that they are also VM/ESA
  37. instructions.  The problem you are having with them is not a function of
  38. operating system, but rather of ASSEMBLER.  You are invoking the assembler
  39. with VMFASM, which I believe invokes the XF (freebie) assembler.  You need
  40. to invoke ASM-H, probably by using VMFHASM.  But this is just a guess, of
  41. course.
  42.  
  43. The undefined symbol FLS has a comment in the code that it maps GCS
  44. lowcore.  That should suggest that it is a GCS macro, and that FLSVMID
  45. is an element of that mapping.  You need to discover the name and
  46. location of your GCS maclibs and ensure they are available to the
  47. assembler.
  48.  
  49. The prolog commentary explicitly states that IUCVINI and IUCVCOM are
  50. GCS macros, so solving the FLS problem should solve this group also.
  51.  
  52. Finally, SHOWCB is a VTAM macro, so you need to ensure that you have
  53. the VTAM maclib containing it available to the assember.  You haven't
  54. yet indicated what level of VM and VTAM you are running.
  55.  
  56. It may be a touch harsh of me to say so, but it appears to me that you
  57. haven't bothered to read the 165 lines of prolog commentary, nor the
  58. couple of hundred lines of comments that I included.  You avoided
  59. answering my question about whether you had reason to believe that there
  60. was a specific problem with APPCDEMO.  Rather than indicate which MACLIBs
  61. you were referencing, you ask where (on your own system) the MACLIBs you
  62. need are (of their names, which is equivalent) ... who knows?  Many
  63. MACLIBs are release dependent.  See what MACLIBs exist on your system and
  64. look in them for the MACROs and COPY code you need.  You haven't told
  65. us what version of VM and VTAM you are running.
  66.  
  67. On a softer note, I am aware that you originally asked a very simple
  68. question, "Has anyone successfully run APPCDEMO on ESA?"  And maybe I
  69. should have kept silent since I don't have ESA and have no idea if anyone
  70. else has ever even looked at APPCDEMO!  No one has ever told me that they
  71. successfully created it, added the APPLIDs to VTAM, etc., and ran it!
  72. It serves no useful purpose other than as an exercise, so I don't why
  73. they would.  But I do think that if it is important enough for you to
  74. spend time on it, than you should make a bit more effort to research it.
  75.  
  76. I will leave further comments and questions to the interested student.
  77.  
  78. Dwight
  79.