home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / wackytalky_2 / Developer / Examples / 1st_Look / WithLIB / DLRs < prev    next >
Encoding:
Text File  |  1996-03-21  |  872 b   |  24 lines

  1. ;===================================================================
  2. ;===================  D L R s  =====================================
  3. ;
  4. ; NOTE  Remember to set DLR_chunk% !
  5. ____________________________________________________________________
  6.  
  7. .WT_DLR_DecodingTable%
  8.                z "Test"      ; prefix string
  9.                z "1stDLR"
  10.                ;...  more DLR names     
  11.                z             ; no more DLR names
  12. ____________________________________________________________________
  13.  
  14. .WT_DLR_BranchTable%
  15.                b Test_FirstDLR
  16.                ;... more branches to DLRs
  17. .WT_DLR_BranchTable_End%
  18. ____________________________________________________________________
  19.                iw 0,_dlr_end ; define the iformaton word
  20. .Test_FirstDLR push 0-12,14
  21.                pop^
  22. _dlr_end
  23. ____________________________________________________________________
  24.