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

Assmebler code for converting STRING Format into TABLE


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ram2009
Warnings : 1

New User


Joined: 04 May 2009
Posts: 14
Location: chennai

PostPosted: Mon Feb 08, 2010 4:08 pm
Reply with quote

PRINT NOGEN
FILEASM CSECT
STM 14,12,12(13)
BALR 12,0
USING *,12
ST 13,SAVE+4
LA 13,SAVE
OPEN (OUTDCB,(OUTPUT))
STRING DC X'03020100'
TABLE DC X'FF01AABB00'
TR STRING,TABLE
MVC 2,STRING
PUT OUTDCB,2
CLOSE OUTDCB
L 13,SAVE+4
LM 14,12,12(13)
OUTDCB DCB DSORG=PS,MACRF=(PM),DDNAME=OUTDISK, *
RECFM=FB,LRECL=80,BLKSIZE=800
SAVE DS 18F
END



This was my assmebler code for converting the STRING Format into TABLE format. I compiled the program successfully. But when i tried to run it I ended it in a s0c1 abend.
Pls guide me to sort it out..
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Feb 08, 2010 4:12 pm
Reply with quote

You should remember that execution is sequential...
the open statement generates some machine code instructions...
after that other machine code instructions are expected,
You put Your constants in the wrong place and the CPU tries to execute them
as machine instructions
Back to top
View user's profile Send private message
ram2009
Warnings : 1

New User


Joined: 04 May 2009
Posts: 14
Location: chennai

PostPosted: Mon Feb 08, 2010 5:52 pm
Reply with quote

even i rearrange, i get the same error...
Is there any error in the logic?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Feb 08, 2010 6:00 pm
Reply with quote

Code:
MVC 2,STRING

review the pop for the MVC instruction format

and the listing to see what the MVC has expanded to,
a move to absolute location 2...
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: Mon Feb 08, 2010 7:16 pm
Reply with quote

Beside Enrico's suggestion about reviewing the MVC, I think the Assembler believes that STRING is an instruction. After the OPEN Macro expansion, the logic falls right into this label. When the Assembler tries to interpret a X'03' as an OP CODE, it can't, because it doesn't exist. So, you wind up with an invalid OP CODE (IE: SOC1).

You should move your DS and DC definitions out of the execution path and place them after the the 18-WORD register-savearea, but still, the MVC syntax is way off.

Download the latest/greatest Reference Summary and save as a favorite -

publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/download/DZ9ZS004.pdf?DT=20080216193251&XKS=DZ9ZBK08

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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Issues Converting From ZD to Signed N... DFSORT/ICETOOL 4
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Populate last day of the Month in MMD... SYNCSORT 2
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Load new table with Old unload - DB2 DB2 6
Search our Forums:

Back to Top