◄SEGMENTS Statement► ◄Up► ◄Contents► ◄Index► ◄Back► ─────SEGMENTS Statement: Example──────────────────────────────────────────── SEGMENTS cseg1 CLASS 'mycode' IOPL cseg2 EXECUTEONLY PRELOAD CONFORMING dseg CLASS 'data' LOADONCALL READONLY This example specifies segments named cseg1, cseg2, and dseg. The first segment is assigned the class 'mycode' and the second is assigned CODE by default. Each segment is given different attributes. -♦-