At 15:41 -0600 on 12/09/2010, Rick Fochtman wrote about Re: Problem when try compile a CBT036 FILE:

The value you have specified for the ABEND code is greater than 4095,
which isn't strictly legal under z/OS. Change that "X'001000'" value to
4095 and you'll get clean assemblies.

Rick
----------------------------------------------------
Sergio Lima wrote:

Hello List,

Thanks from all help.
Now our JOB run ok, have some mistakes here, that was correct with all opinions.
Sorry about disturb, with this like "easy" question.
The ZOS that We are migrating is 1.2, from Z/VSE 4.2.
Now, have another problem, because something don't want work in 2 of 6 Assembler programs.
This two programs showed the same error that is :

NOTE: ABOVE LINE DESTROYS REG 15 FOR 31-BIT CALLERS        
      SVC   68             ISSUE SVC                       
      ABEND X'001000',DUMP          SYSTEM 001 ABEND       
      DS    0H
 >  8,CC EXCEEDS SPECIFIED LIMITS

The comment says S001 so the ABEND call needs to be fixed to issue a System Code ABEND not a USER CODE one. The value is correct for a S001 but could be coded as:

       L      1,=AL4(X'001000')    S001 ABEND CODE
       ABEND (1),DUMP          SYSTEM 001 ABEND

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to