home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 18 / 018.d81 / q&a.1 < prev    next >
Text File  |  2022-08-26  |  3KB  |  115 lines

  1.  
  2.        QUESTIONS AND ANSWERS
  3.  
  4.  
  5. From:  Norris 88001
  6.  
  7.  
  8.   I am wondering if you plan to carry
  9.  
  10. any hardware items or are you going to
  11.  
  12. concentrate on just software?
  13.  
  14. > We're focussed on software, but we
  15. > won't rule out hardware as a future
  16. > endeavor.
  17.  
  18. - - - - - - - - - - - - - - - - - - -
  19.  
  20. From:  Heyde 66206
  21.  
  22.   I would like to use the Shell-
  23.  
  24. Metzner sort in some of my own
  25.  
  26. programs, but cannot get it to be
  27.  
  28. accepted by my disk drive.  How do we
  29.  
  30. enter names and other data to be used
  31.  
  32. with this program.
  33.  
  34. > The Shell-Metzner sort routine is
  35. > written in machine-language for
  36. > speedy execution.  To transfer the
  37. > program to another disk, you need to
  38. > use some file copy program that is
  39. > capable of copying ML files (most
  40. > commercial file copiers will do
  41. > this).  The routine will sort ANY
  42. > one-dimensional string array into
  43. > ascending order.  After LOADing the
  44. > routine (using the ,8,1 suffix), it
  45. > can be invoked by doing the
  46. > following:
  47. >
  48. >   1. After you have your data in
  49. >      an array and want it sorted,
  50. >      a SYS 49152,array$(0) will do
  51. >      the sorting.
  52. >
  53. > The name of the array you want to
  54. > sort should be substituted for the
  55. > array$ above.  For example, if you
  56. > want to sort the array ZIP$, then
  57. > you will use a SYS 49152,ZIP$(0).
  58. > Be sure to include the (0). This
  59. > helps the ML routine find the array
  60. > and begin sorting it!
  61.  
  62. - - - - - - - - - - - - - - - - - - -
  63.  
  64. From:  Pickett 34091-1473
  65.  
  66.   I appreciate the inclusion of the
  67.  
  68. magazine entry programs! But why can't
  69.  
  70. someone come up with a 'universal
  71.  
  72. checksum program.' I personally would
  73.  
  74. like to know if you could run the
  75.  
  76. magazine entry programs from other
  77.  
  78. magazines?
  79.  
  80. > If your question is 'Can LOADSTAR
  81. > publish other magazine entry
  82. > programs', the answer is NO, because
  83. > they are the copyrighted property
  84. > of the other magazines.  If your
  85. > question is directed to the
  86. > interchangeability of various
  87. > entry programs, you'll probably
  88. > still be disappointed. Each program
  89. > has a unique checking algorithm.
  90.  
  91.  
  92.   I also get Compute magazine. Their
  93.  
  94. MLX program is for machine code. My
  95.  
  96. novice question is this -- If a ML
  97.  
  98. program is all numbers, is there a
  99.  
  100. program that lets you type in your
  101.  
  102. basic programs and spews out the data
  103.  
  104. numbers?
  105.  
  106. > What you have described is called
  107. > a compiler. Basic data statements
  108. > are a rudimentary form of ml code.
  109. > A compiler converts the entire
  110. > program to machine code. Compiler
  111. > code is not accessible for direct
  112. > editing.
  113.  
  114. ---------< end of article >-----------
  115.