home *** CD-ROM | disk | FTP | other *** search
- m18
- O3
- RF0 0 639 479
- O1
- T5
- RE8 9 630 451
- O0
- T1
- te30 35 DEFAULT
- Bytes can also be used to
- represent instructions. You could
- invent a code in which each of the
- 256 possible combinations of bits
- is a different instruction to the
- computer. For instance, if 34 means
- put a red dot in the middle of the
- screen, and if 176 means move that
- dot to the left... You get the idea,
- that's programming. Of course there
- are more than 256 things you could
- have the computer do. Combinations
- of many bytes, each representing a
- simple instruction, can be used to
- build a complex instruction.
- Programmers don't actually have
- to remember the numbers assigned to
- bytes. Their programming languages
- ~
- te350 35 DEFAULT
- themselves assign English-like
- words to the instructions
- contained in the bytes. Here
- is a sample from a programmer's
- file. This example is actually
- running right now. It's a
- part of CMSHOW.EXE:
- ~
-
- O0
- te339 350 DEFAULT
- (This shows the next screen.)
- ~
-
- T3
- O12
- RE345 178 588 323
- O0
- RF348 181 585 320
- RF356 324 595 330
- RF589 191 595 326
-
- O7
- te350 185 DEFAULT
- case upcase(u) of 'N' :
- begin
- inc(whichone);
- if whichone > max
- then whichone := max;
- readfile(whichone);
- end;
- ~
-