Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

There also exists a more intuitive interface for LATCComponents. The user can reference the components and registers of a component by name. For example, the following two code snippets are equivalent:

Code Block
aem1aem = lat.components()['AEM']
aem2trgseq = lat.components()['AEM'].registers()['trgseq']
Code Block
trgseq1aem = lat.AEM.registers()['trgseq']
trgseq2
trgseq = lat.AEM.trgseq

LATCComponentDict

...