├── NJE38_Installation_and_Usage_Guide.pdf ├── README.md ├── job000.txt └── nje38v242.aws /NJE38_Installation_and_Usage_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshix/nje38mvs/5ba813120b00b6041db2831ace5e055e2c4908e9/NJE38_Installation_and_Usage_Guide.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Discord](https://img.shields.io/discord/423767742546575361.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/vpEv3HJ) 2 | 3 | [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fmoshix%2Fnje38mvs%2Ftree%2Fmaster&count_bg=%2377C20B&title_bg=%23080808&icon=&icon_color=%23E7E7E7&title=Hits&edge_flat=true)](https://hits.seeyoufarm.com) 4 | 5 | 6 | NJE38: NJE Subsystem for MVS 3.8 - Version 2.4.2 7 | ================================================ 8 | 9 | 10 | This is Bob Polmanter's genial NJE subsystem for MVS 3.8. It works perfectly with TK4- MVS 3.8 (update 8), TK3, and my own MVS 3.8 TK4+ distribution. It will not work if no RAKF is running in your MVS 3.8 distribution. 11 | 12 | This repo is maintained with the express permission from Bob Polmanter. 13 | 14 | I contributed **nothing** to this software (other than some feature requests, some ideas, and testing it together with Bob), **all the credits go to Bob Polmanter**. 15 | 16 | This software is delivered as is, with no guarantee, not from Bob and not from me. 17 | 18 | The included PDF will help you getting it installed. Also, watch my video about how to get it running on the moshix mainframe channel on youtube.com: https://www.youtube.com/watch?v=8_esBksImCg 19 | 20 | **The current version you should run is NJE38 v2.4.2!** 21 | 22 | Have fun 23 | 24 | Moshix 25 | Krakow, January 2025 26 | 27 | 28 | -------------------------------------------------------------------------------- /job000.txt: -------------------------------------------------------------------------------- 1 | //HERC01A JOB CLASS=A,MSGCLASS=X 2 | //* 3 | //* JOB000 4 | //* THIS JOB UNLOADS THE NJE38 DISTRIBUTION TAPE 5 | //* 6 | //UNLOAD PROC VOL=PUB000, <== VERIFY 7 | // SAMPLIB='NJE38.SAMPLIB', <== VERIFY 8 | // AUTHLIB='NJE38.AUTHLIB', <== VERIFY 9 | // CMDLIB='SYS2.CMDLIB' <== VERIFY 10 | //* 11 | //CPY EXEC PGM=IEBCOPY 12 | //SYSPRINT DD SYSOUT=* 13 | //SYSUT3 DD UNIT=VIO,SPACE=(CYL,5) 14 | //SYSUT4 DD UNIT=VIO,SPACE=(CYL,5) 15 | //IN1 DD UNIT=TAPE,DSN=N38.SAMPLIB,DISP=(OLD,KEEP), 16 | // VOL=(,RETAIN,SER=NJE38),LABEL=(1,SL) 17 | //IN2 DD UNIT=TAPE,DSN=N38.AUTHLIB,DISP=(OLD,KEEP), 18 | // VOL=(,RETAIN,SER=NJE38),LABEL=(2,SL) 19 | //IN3 DD UNIT=TAPE,DSN=N38.CMDLIB,DISP=(OLD,KEEP), 20 | // VOL=(,RETAIN,SER=NJE38),LABEL=(3,SL) 21 | //* 22 | //OUT1 DD DISP=(NEW,CATLG),DSN=&SAMPLIB, 23 | // SPACE=(CYL,(1,1,5)),UNIT=SYSDA,VOL=SER=&VOL, 24 | // DCB=(BLKSIZE=3120,LRECL=80,RECFM=FB) 25 | //OUT2 DD DISP=(NEW,CATLG),DSN=&AUTHLIB,VOL=SER=&VOL, 26 | // SPACE=(CYL,(1,1,5)),UNIT=SYSDA, 27 | // DCB=(BLKSIZE=6144,RECFM=U) 28 | //OUT3 DD DISP=SHR,DSN=&CMDLIB 29 | // PEND 30 | //RUN EXEC UNLOAD 31 | //CPY.SYSIN DD * 32 | COPY INDD=IN1,OUTDD=OUT1 33 | COPY INDD=IN2,OUTDD=OUT2 34 | COPY INDD=((IN3,R)),OUTDD=OUT3 35 | /* -------------------------------------------------------------------------------- /nje38v242.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshix/nje38mvs/5ba813120b00b6041db2831ace5e055e2c4908e9/nje38v242.aws --------------------------------------------------------------------------------