home *** CD-ROM | disk | FTP | other *** search
/ 8+1 Entertainment Pack: Game Pack 2 / VOL02.bin / hotkeys / hotkey4 / what_box / box.12 < prev    next >
Encoding:
Text File  |  1993-12-01  |  1.2 KB  |  63 lines

  1. m18
  2. O3
  3. RF0 0 639 479
  4. O1
  5. T5
  6. RE8 9 630 451
  7. O0
  8. T1
  9. te30 35 DEFAULT
  10.     Bytes can also be used to
  11. represent instructions.  You could
  12. invent a code in which each of the
  13. 256 possible combinations of bits
  14. is a different instruction to the
  15. computer.  For instance, if 34 means
  16. put a red dot in the middle of the
  17. screen, and if 176 means move that
  18. dot to the left... You get the idea,
  19. that's programming. Of course there
  20. are more than 256 things you could
  21. have the computer do. Combinations
  22. of many bytes, each representing a
  23. simple instruction, can be used to
  24. build a complex instruction.
  25.    Programmers don't actually have
  26. to remember the numbers assigned to
  27. bytes. Their programming languages
  28. ~
  29. te350 35 DEFAULT
  30. themselves assign English-like
  31. words to the instructions
  32. contained in the bytes. Here
  33. is a sample from a programmer's
  34. file. This example is actually
  35. running right now. It's a
  36. part of CMSHOW.EXE:
  37. ~
  38.  
  39. O0
  40. te339 350 DEFAULT
  41.  (This shows the next screen.)
  42. ~
  43.  
  44. T3
  45. O12
  46. RE345 178 588 323
  47. O0
  48. RF348 181 585 320
  49. RF356 324 595 330
  50. RF589 191 595 326
  51.  
  52. O7
  53. te350 185 DEFAULT
  54.   case upcase(u) of 'N' :
  55.      begin
  56.        inc(whichone);
  57.        if whichone > max
  58.        then whichone := max;
  59.        readfile(whichone);
  60.      end;
  61. ~
  62.  
  63.