Notes on the SWTPC MP-N Calculator Interface and the Calc-1 Program prepared for. Dr. Daniel W. Scott CSCI 490.001 by Daniel Paul Long May 8, 1979 I assembled an SWTPC MP-N Calculator Interface and implemented it using the Calc-1 Program supplied with the kit. The following are my corrections to the documentation and my observations about the interface board and software. This interface was bought to perform floating-point arithmetic and for its function capabilities such as SIN, COS, and e**x. My application required an integer truncation function that is not performed by this calculator, so I wrote a small assembly language subroutine to do it. A potentially irritating problem is that the calculator chip does not automatically convert to scientific notation if the numbers become too big to display in floating point. The control program must keep track of the display mode. My application requires fast numerical processing, so, after observing the calculator's computational speed using the Calc-1 program, I decided that its trigonometric functions were too slow. I developed another approach to the problem using pure assembly language rather than partially relying on peripheral hardware processing. Though I found no major flaws with the Calc-1 software, I did find some mistakes in its documentation. In Table V, the ASCII to Calculator Instruction Lookup Table, there are three errors: the hex value in the table where MSB is 0 and LSB is D should be 21, where MSB is 1 and LSB is 8 should be 2F, and where MSB is 2 and LSB is E, the hex value should be 0A. I added a one page summary of the Calc-1 instruction set to the documentation because the supplied documentation is somewhat confusing. The Calc-1 program uses a part of RAM also used by the monitor. This provides problems when Calc-1 is halted to record it on cassette tape and resume after it has been record it on cassettee and resume after it has been recorded. This can be alleviated by changing the "LDX PARADR" instructions in lines 250, 850, 1660, and 1980 to "LDX #$8000," or, in hex, "FE A002" to "CE 800C." However, the interface must now always be plugged into I/O port 3. The data at hex address 028A is output to the terminal to clear the screen. The ADM terminals we have use a different character to clear the screen. So I changed the data at that address to hex 1A. Calc-1 also uses address modification within itself so that, as a result, it cannot be implemented in ROM. I tested the MP-N interface with the Calc-1 program by making various operand and operator entries and checking the results against the results I obtained with my own pocket scientific calculator. I noticed no major discrepancies between the two sets of results. Table V - ASCII to CALCULATOR INSTRUCTION LOOKUP TABLE (corrected) 0 1 2 3 4 5 6 7 MSB LSB 0 0F 0F 21 00 0F 0D 0F 0D I 0F 0F 0F 01 lb 33 0F 33 2 0F 0F 0F 02 36 37 36 37 3 0F 0F 0F 03 25 24 25 24 4 0F 0F 0F 04 2D 26 2D 26 5 0F 0F 0F 05 0B 32 0B 32 6 0F 0F 0F 06 2C 34 2C 34 7 0F 0F 0F 07 1C 31 IC 31 8 0F 2F 0F 08 LD 30 1D 30 9 0F 0F 0F 09 20 2B 20 2B A 0F 0F 3B 0F 0F 0C 0F 0C B 0F 0F 39 0F 0F 0F 0F 0F C 0F 0F 0F 0F 0F 0F 0F 0F D 21 0F 3A 0F 18 0F 18 0F E 0F 0F 0A 22 35 38 35 0F F 0F 0F 3C 0F 23 0F 23 0F Example: An ASCII P is a hex 50 which points in the table to a 0D which is the constant PI instruction for the calculator chip. Calc-1 Instruction set (also MM57109 data sheet Table III) Full Name ASCII Character 0 thru 9 0 thru 9 Decimal point . Enter Exponent E Change Sign Z Constant PI P Set mantissa digit count M X exchange M A Memory Store G Memory recall H Inverse Mode I Enter SP or CR Toggle Mode > Roll Stack ) Sine X S Cosine X C Tangent X T Error clear Y Radians to degrees F Degrees to Radians D Master clear CTRL X X exchange Y X E to X W Ten to X U Square Q Square root V Natural log of X N Base 10 log of X B One divided by X R Y to X ^ Plus + Minus - Times * Divide / TABLE VI- ERROR CONDITIONS The ERROR flag on the calculator chip is set when: 1) LN X when X <= 0 LOG X when X <= 0 2) Any result < 10**-99 Any result > 10**99 3) TAN 90 , 270 , 450 , etc. 4) SIN X, Cos X, TAN X when |x| >= 90 5) SIN**-1 X, COS**-1 X when |x| > or |x| <= 10**50 6) SQRT X when X <0 7) dividing by 0 8) Outputting a number in floating point mode if the number of mantissa digits to the left of the decimal point is greater than the mantissa digit count.