At 17:09 -0500 on 09/26/2011, Robert Ngan wrote about Page alignment
requirement for TROT table:
OK, so I've decided to use the TROT instruction to do arbitrary length
display hexadecimal conversion. It seems that the translate table must be
aligned on a page boundary and I found that to align on a 4K boundary, I
should use the binder PAGE statement for the csect and specify:
ORG ,4096
before the translate table, but this ORG fails ...
Why not just place the table(s) into a separate CSECT and use a =A or
=V to get the location? As a CSECT you can use the PAGE Command to
align it.