Michel Butz said: >I am looking in 2.2 HLASM guide
>Says there are 9 types of symbols >SD,ED,LD,ER,PC,PR,CM,XD,WX >Can some one give an example say what a ER is >Is that a CSECT or ENTRY thanks ER = External Reference; CSECT generates SD (Section Definition), ENTRY generates LD (Label Definition). ER is created from either an EXTRN statement, or from the operand of a V-type address constant. John Ehrman
