IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How can i display / define the negative values assembler?


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
GAFUR

New User


Joined: 19 May 2005
Posts: 31

PostPosted: Thu Mar 13, 2008 7:54 pm
Reply with quote

Hello ,


I have a preliminary question about assembler. How can i display negative values using WTO macro.



thanks,
Gafur
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Thu Mar 13, 2008 8:22 pm
Reply with quote

Ultimately, you'd have to UNPACK the data into a display-workarea large enough to hold the number, such as a CL16.

Then, test the source-field of this data and determine of it's positive or negative and insert the appropriate sign in the 1st-byte of the CL16.

If the source-data is in a halfword or fullword, then you're going to have to load it into a work-register and issue a CVD into an aligned-doubleword, with the sign-nibble resolving to either a 4-Bit "C" or "D", with the latter representing a negative value.

Now, you could be fooled if the halfword value exceeds 32767, but it really represents a positive value, such as 65535. So, I would move the halfword to the low-order of a fullword work-area, clear the high-order of the fullword to X'0000' and then load this fullword into the work-register, followed then by the CVD.

To me, this is an easy method and you don't need to define an edit-pattern and use the ED instruction (YUK!).

HTH....

Regards,

Bill
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts DTL - how to define key with stacked ... TSO/ISPF 3
No new posts Null values are considered in Total c... DFSORT/ICETOOL 6
No new posts Build dataset list with properties us... PL/I & Assembler 4
Search our Forums:

Back to Top