home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / doc / memos < prev    next >
Text File  |  1993-01-19  |  2KB  |  64 lines

  1. STUFF TO DO
  2.  
  3. ----------------------------------------------------------------------
  4. IMPROVE DOCUMENTATION
  5.  
  6. SIGNAL should be used to catch them bombs, when previous errors force 
  7. a crash.
  8.  
  9. Improve portable.c to the level of usefulness, à la RN Configure
  10.  
  11. make a papplist for identifier, for .ZEXT and .UNDEFINE
  12.  
  13. this might create problems (try it out)
  14. ---
  15. file a:
  16.    foo = bar
  17.  -
  18. file b:
  19.    bar   lda   foo
  20. ---
  21.  
  22. ----------------------------------------------------------------------
  23.  
  24. Doku for Worker.c  NLINK65
  25.  
  26.  
  27. This is the way PC, ORIGIN and DIFF work
  28.  
  29.    Files that are loaded
  30.  
  31.    +---------+   pc            +---------+   pc
  32.    |         |   .             |         |   .
  33.    |         |   .             |         |   .
  34.    |  file1  | bytes           |  file2  | bytes
  35.    |         |   .             |         |   .
  36.    |         |   .             |         |   .
  37.    +---------+ endpc           +---------+ endpc
  38.  
  39.  
  40.             +-------------+ origin
  41.             | +---------+ |   .
  42.             | |         | |   .                            n∙
  43.             | |         | |   .       diff = origin - pc + Σ bytes
  44.             | |  file1  | |   .                            2
  45.             | |         | |   .
  46.             | |         | |   .
  47.             | +---------+ | tbytes
  48.             | +---------+ |   .
  49.             | |         | |   .
  50.             | |         | |   .
  51.             | |  file2  | |   .
  52.             | |         | |   .
  53.             | |         | |   .
  54.             | +---------+ |   .
  55.             +-------------+ code_end
  56.  
  57. ∙ I can't believe it. I actually wrote something mathematical.
  58. ----------------------------------------------------------------------
  59.  
  60. h_global[0] and relatives are never used? WRONG!! They are used with
  61. those special VfL variables.
  62.  
  63.  
  64.