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

To decrement the value in one byte field by one.


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

New User


Joined: 24 Jul 2009
Posts: 51
Location: Pune

PostPosted: Sat Jul 25, 2009 1:31 am
Reply with quote

I have a one byte field in the input file . The value could be a hexadecimal from 00 to 99 .

I have to decrement the value by 1 and update the 1 byte field with new value.

What is the most efficient and shortest way of doing it in assembler .Please help with the code.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Sat Jul 25, 2009 1:41 am
Reply with quote

post what You have devised, and we' ll comment on it

this is a help forum, not a do it for me one icon_smile.gif
Back to top
View user's profile Send private message
Pankaj Shrivastava
Currently Banned

New User


Joined: 24 Jul 2009
Posts: 51
Location: Pune

PostPosted: Sat Jul 25, 2009 1:56 am
Reply with quote

Ok Enric icon_smile.gif

This is what i have designed :

SR R5,R5
IC R5,VAR1BYTE
SH R5,=H'1'
STC R5,VAR1BYTE


Your comment please.
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: Sat Jul 25, 2009 2:04 am
Reply with quote

Looks OK. You can eliminate the 2-Byte H'1' Literal by using -

Code:

AHI R5,-1    SUBTRACT 1 FROM R5 (CC SET)

or you can use -

Code:

BCTR R5,0    SUBTRACT 1 FROM R5 (CC NOT SET)

There isn't any SHI, so using the AHI adding a negative 1 will work.

FWIW, BCTR R0,0 will not work....

Bill
Back to top
View user's profile Send private message
Pankaj Shrivastava
Currently Banned

New User


Joined: 24 Jul 2009
Posts: 51
Location: Pune

PostPosted: Sat Jul 25, 2009 2:08 am
Reply with quote

Thx Bill icon_smile.gif
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 Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts 10 byte RBA conversion DB2 2
No new posts 10 byte RBA conversion -non applicati... JCL & VSAM 1
No new posts Join 2 files according to one key field. JCL & VSAM 3
Search our Forums:

Back to Top