Re: Incoming | Computerworld SHARK TANK

2019-04-13 Thread Richard Rogers
Watched it happen. One of our experienced operators heard a high sounding screech come from a 2314 disk drive. He spun-down two drives, moved the bad drive to the working drive, and tried again. Ended up literally scratching 3 of our 5 2314 drives. Nice long curved scar on the top surface,

Re: How to delete strange files on dasd

2018-09-13 Thread Richard Rogers
Does IEHPROGM still support SCRATCH VOL=devtype=volser,SYS to scratch temporary data sets? -Original Message- From: IBM Mainframe Discussion List On Behalf Of Bill Godfrey Sent: Wednesday, September 12, 2018 15:32 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: How to delete strange files on

Re: Silly C problem adding hex 6C

2018-02-08 Thread Richard Rogers
(char *)(ASCB + 0x6C) is going to add 0x6c * 4 since ASCB is a pointer to integer, then that will be recast to a char *. (char *)ASCB + 06C will add 0x6c. Define everything as unsigned char *, since that's what you're really pointing to. Then recast to int or whatever when and as actually

Re: Create subtask w/out a load module?

2017-08-26 Thread Richard Rogers
IDENTIFY EP=MYSUB,ENTRY=SUBENTRY ATTACH EP=MYSUB,... -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Thomas David Rivers Sent: Saturday, August 26, 2017 03:35 To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Create subtask w/out a load

Re: Converson of hex value to character

2016-09-12 Thread Richard Rogers
IC Rx,HEXVAL STC Rx,DISPLY+1 SRL Rx,4 STC Rx,DISPLY NC DISPLY(2),=X'0F0F' TR DISPLY(2),=C'0123456789ABCDEF' -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Bill Ashton Sent: Monday, September 12, 2016 09:33 To:

Re: Converson of hex value to character

2016-09-12 Thread Richard Rogers
IC Rx,HEXVAL STC Rx,DISPLY+1 SRL Rx,DISPLY NC DISPLY(2),=X'0F0F' TR DISPLY(2),=C'0123456789ABCDEF' -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf Of Bill Ashton Sent: Monday, September 12, 2016 09:33 To: IBM-MAIN@LISTSERV.UA.EDU