¿ªÔÆÌåÓý

Re: How Big/Long is a CMS Module
I wondered where XRUNPARM came from, and now I know! Thank you!! I do know where the source is, and have assembled it. The TEXT and LISTING files are somewhere around here. I had been looking at LOAD
By Mark A. Stevens · #5476 ·
Re: How Big/Long is a CMS Module
Hi, Bernd, See my reply to Mark Stevens regarding RUNPARMS and XRUNPARM... :-) Also, for VM/SP and above, you should be able to use the OSRUN command that is built-in to VM/SP and above to invoke your
By Mark Waterbury · #5475 ·
Re: How Big/Long is a CMS Module
Hi, Mark, RUNPARMS and XRUNPARM are very small, so no reason they could not be compiled and loaded with "(ORIGIN TRANS" to run in the CMS transient area (only 8K), then that way they can load and run
By Mark Waterbury · #5474 ·
Re: How Big/Long is a CMS Module
Rene, Yes, I have, and it has a call to GETMAIN and FREEMAIN. ... Mark S.
By Mark A. Stevens · #5473 ·
Re: How Big/Long is a CMS Module
One more remark, BTW: when I tested my Pascal compiler - including XRUNPARM - on modern z/VM, I found out that XRUNPARM with its current coding doesn't work there, because the layout of the module
By Bernd Oppolzer · #5472 ·
Re: How Big/Long is a CMS Module
I have written XRUNPARM some years ago (2016), based on a routine called RUNPARM, which IMO is or was part of the COBOL runtime or came with the COBOL compiler (which, AFAIK, is an MVS compiler, which
By Bernd Oppolzer · #5471 ·
Re: How Big/Long is a CMS Module
Have you check the assembler code of RUNPARM? I can't say for sure but, looking at it, I feel RUNPARM does make a call to GETMAIN to obtain storage for the module beyond the end of itself. Cheers,
By Ren¨¦ Ferland · #5470 ·
Re: How Big/Long is a CMS Module
Hello, When I was in college (Ohio University), I developed a technique to run multiple commands from one program. Basically, I created a dynamic loader to load the control program. Once the control
By Bertram Moshier · #5469 ·
Re: How Big/Long is a CMS Module
There is a modules called RUNPARM and XRUNPARM, which is on the Y-Disk. There is also WMSASM from the CBT. All three are supposed to be a 'front end' for programs that are by nature MVS code. They
By Mark A. Stevens · #5468 ·
Re: How Big/Long is a CMS Module
On Sun, Feb 4, 2024 at 03:20 PM, Mark A. Stevens wrote: The following is wrong. If I could only count. > > HEX??? RECORD: 000001? RECORDLENGTH: 000080 > ---- +--- -|-- --+- ---| ---- +--- -|--
By Mark A. Stevens · #5467 ·
Re: How Big/Long is a CMS Module
Mark, Not sure what you are planning, but if your program has issued any storage requests, the space at the end of the program will have been used to satisfy those requests so not available to load a
By Dave Wade · #5466 ·
How Big/Long is a CMS Module
I've been trying find/figure this out. A CMS module is of a certain length/size. How do I find out what that size is? Why? because I want to call another module, and have it load above the first one,
By Mark A. Stevens · #5465 ·
MONITOR Files
Hi Peter, it took me some time, but eventually I found the MONSTATS program from the 1985 Waterloo Tape at this website: http://www.smrcc.org.uk/members/g4ugm/shedlock/vmwkshop.html . (
By Ralf Straube · #5464 ·
IBM BASIC Language - Compiler messages not displayed
Hi Dave, I bet you will solve the puzzle. Please let me know, if I can assist you in any way, for example by testing. Greetings Ralf
By Ralf Straube · #5463 ·
Re: IBM BASIC Language - Compiler messages not displayed
Ralf, Well now you are happy, I have to see what is stopping the error messages. Dave Sent: Friday, February 2, 2024 11:15 AM To: [email protected] Subject: [h390-vm] IBM BASIC Language - Compiler
By Dave Wade · #5462 ·
IBM BASIC Language - Compiler messages not displayed
Hi Dave, "ACCESS (NOPROF" did it! Now BASIC shows every compiler error and warning message I was able to generate, Thank you very much for your assistance. I also learned from your answer more about
By Ralf Straube · #5461 ·
Re: IBM BASIC Language - Compiler messages not displayed
Ralf, Pretty sure it one of the profile files. Instead of hitting enter at the VM READ prompt at login type :- ¡°ACCESS (NOPROF¡± And test again please¡­ ¡­ you will have to use EDIT rather than
By Dave Wade · #5460 ·
IBM BASIC Language - Compiler messages not displayed
Hi Dave, thank you very much for your reply. I made the changes to SYSPROFB EXEC, but the result was the same as before. After that, trying to find different test cases, not only a simple syntax error
By Ralf Straube · #5459 ·
Re: I forgot: How does one read a print / console spool file to CMS disk
Bertram Moshier wrote: Correct.
By Fish Fish · #5458 ·
Re: I forgot: How does one read a print / console spool file to CMS disk
The READCARD you coded should do the work. However, looking at the output of the QUERY command just before, I see the HOLD status is USER. I think it means the spool file is held so you can't save it
By Ren¨¦ Ferland · #5457 ·