|
This lab consists of a couple more exercises programming the PC-231 computer
as described in the PC-231 Computer Supplement.
As with the last lab, you will probably want to keep the Supplement open
in a second window while you work.
The emphasis on this lab is on loops, that is, on programs which use the
JUMP and JPIF commands to effect the controlled re-execution of
a set of commands. By "controlled re-execution", I mean that one must always ask
how it is that the loop will stop; JPIF is almost always the right way to
do this. You should be sure you understand the sample programs which were developed
in class that used the JPIF command, including the use of indirection
through the jump registers.
Recall the
omelette exercise from Lab 3,
in which we explored several
different ways of representing omelettes with various ingredients in
digital form. Although the hexadecimal format was best for most situations,
it probably isn't the easiest for most people to read.
Write a program which will read in numbers in hexadecimal format
representing omellete orders and print out an ASCII version using the
initial letters for the ingredients as given in Lab 3. Your program
should read in hexadecimal numbers representing ingredients until it reads
the sentinel value xFF. The program should print out the ASCII initials
representing the same ingredients, in the same order.
You may choose whether you would like to read in all the ingredients first
and then print out the results, or whether you would rather read them and
print them alternately (i.e., read and print, one after another).
As an example of how your program should work, if you type the following
hexadecimal order in (perhaps on several lines, as prompted by the machine):
Contents
Exercise #1: Translating omelette orders
0 8 F FF
then your program should type out the ASCII letters for asparagus, jack cheese
and tomato (again, perhaps interspersed with other output from the machine):
A J T