Problem Set 3

Due: December 7th @ 9:35am

Hand in print out that includes documentation, and a disk.
Label the program ed2.asm and ed2.exe (include the source
for the new code and executable program - do not hand in the code for the editor).
Note: This assignment will NOT be accepted after 11:30AM
on Monday December 11th [Handed in before 4PM Dec 8th, you lose 5 pts,
after that you lose 10 pts, up to 11:30AM Monday, then you get 0 pts
for the assignment. If not handed in during class it must be handed in at the CS office.
NO CREDIT will be given if the program does not work.

Extend the editor (Problem Set 2) by adding a command for run (R). It should have the following features:

    -execute the code starting at the lowest line number
    -jump back to the editor upon completion (or error)
    -include the following words:
        PRINT "text..."
        PRINT A
        GOTO x
        INPUT Aprompt user with * and store input in A
        LET A=B(OP)C
        IF logical statement THEN statement
        END

Notes:
	*  A, B, and C represent any capital letter in the range A-Z
	*  x represents any line number in the range 0-9
	*  (OP) represents any operation +, -, *, /
	*  logical statements:  A=B,  A>B,  A<B
	*  statement: PRINT, LET, INPUT, GOTO, END
	*  a snytax error will display an error message and 
	   return to the editor



Points: 60 + 20  (80 total) - be sure to highlite extras!!!
3 bonus points by working version at the start of lab Dec 5th