Re: Basic VM/CMS question (GENMOD)

2023-07-15 Thread Bernd Oppolzer
Thank you very much ... I have legacy code here which is from 1979 and 1982, and the primary targets are VM/370 and MVS 3.8, but I'm very happy that it runs on current z/OS and current z/VM, too ... and it will sure run after some minor corrections also from "real" MODULEs and not only via LOAD

Re: Basic VM/CMS question (GENMOD)

2023-07-14 Thread Alan Altmark
You'll get plenty of help over in the IBMVM mailing list. When you issue the LOAD prior to the GENMOD, be sure to include the RLDSAVE option. This ensures that your program can be loaded anywhere in memory, and CMS will not overlay the current program. In fact, the first MODULE can invoke ano

Re: Basic VM/CMS question (GENMOD)

2023-07-11 Thread Bernd Oppolzer
Sorry, I have to apologize ... the error is NOT a GENMOD problem, instead the message is written by XRUNPARM itself, when it tries to load the GENMODed Pascal program ... I should have looked there first. Didn't remember that XRUNPARM does such a BADSIZE check, because it worked for decades, an

Re: Basic VM/CMS question (GENMOD)

2023-07-11 Thread Phil Smith III
Bernd Oppolzer asked about a GENMOD problem. The z/VM LIST is at ib...@listserv.uark.edu , which means lists...@listserv.uark.edu is where you can subscribe (well, any of the LISTSERVs should work, but). Meanwhile, plea

Re: Basic VM/CMS question (GENMOD)

2023-07-11 Thread Bernd Oppolzer
Update: the error only occurs, if I specify the ORIGIN parameter on the LOAD command; if I don't, the first object is loaded at hex 2, and the GENMOD works without problems. But: because my command line mapping program (XRUNPARM) runs first and then calls the Pascal program, the Pascal pro

Basic VM/CMS question (GENMOD)

2023-07-11 Thread Bernd Oppolzer
Hello all, I know that this is maybe not the right list for asking questions on the VM/CMS system, but forgive me ... I am registered to many lists, but no VM list, and today I have a problem which could be a simple problem, so I would like to try it here. I am trying to build my Pascal compi