View previous topic :: View next topic |
Author |
Message |
rnanavaty Beginner
Joined: 12 Apr 2006 Posts: 29 Topics: 20
|
Posted: Sat Feb 17, 2007 5:49 am Post subject: Field Selectors in Assembly |
|
|
I am unable to interpret the following sentence due to L' and didn't found it in manual also: For ex
LA R6,L'KENTRY(R6)
Here KENTRY is a field of 7 bytes and R6 points to one table defined as
KCAN DS 0CL7
DC C'901010',C'1'
DC C'931010',C'1'
DC C'931310',C'1'
DC C'931410',C'1'
How we can use this table by defining only 7 bytes. It is clear that we can one entry at a time but what exactly L' helps in it??? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
Bill Dennis Advanced

Joined: 03 Dec 2002 Posts: 579 Topics: 1 Location: Iowa, USA
|
Posted: Tue Feb 20, 2007 2:34 pm Post subject: |
|
|
If the size of KENTRY changes to 8 bytes, the instruction doesn't need to change.
It would need changing if it were:
LA R6,7(R6) _________________ Regards,
Bill Dennis
Disclaimer: My comments on this foorum are my own and do not represent the opinions or suggestions of any other person or business entity. |
|
Back to top |
|
 |
|
|