From a portion of the MP-N Assembly Instructions, the manual for the SWTPC 6800 MP-N Numeric processor board From the OCR copy at dramp.com, source not verified Herb Johnson Mar 23 2025 Using the Calculator Interface Table I gives a complete list and description of the calculator chip's instruction set. Remember that some of the instructions are for stand alone processing systems and are not used on this interface. All numerical entry is in Reverse Polish Notation (RPN) and anyone familiar with Hewlett Packard calculators should have no problem with the data entry sequence. For those not familiar with RPN, the following should be helpful: To add 7 + 8, enter the following 7 enter 8 + (4 entries) The answer is now stored in the X accumulator within the calculator chip The OUT instruction may be used to output the answer To find the inverse sine of 0.5, enter the following: 0.5 INV SIN ( 5 entries) The answer is now stored in the X accumulator within the calculator chip. The OUT instruction may be used to output the answer. In order to simplify the interfacing between your program and the calculator interface, you will probably want to incorporate the following subroutines into your program. INITAL SUBROUTINE The INITAL or initialize subroutine configures the PIA interfacing to the calculator chip. This subroutine need only be used once; and is best placed somewhere at the beginning of your program., It is responsible for initializing the data direction registers and control registers of the PIA. The subroutine requires that the index register be loaded with the "lowest" address of the PIA interfacing to the calculator chip prior to execution. This "lowest" address depends upon which interface port position the MP-N calculator card is plugged. The table below gives the "lowest" address of each interface card position. PORT0 8000 PORT1 8004 PORT2 8008 PORT3 800C PORT4 8010 PORT5 8014 PORT6 8018 PORT7 801C 86 7F INITAL LDA A #$7F INIT A SIDE OF PIA A7 00 STA A 0,X 86 36 LDA A #$36 HIGH HOLD-POS READY A7 01 STA A 1,X 86 00 LDA A #$00 INIT B SIDE OF PIA A7 02 STA A 2,X 86 34 LDA A #$34 NEG R/W A7 03 STA A 3,X A6 02 LDA A 2,X CLEAR R/W FLAG 39 RTS OUTINS SUBROUTINE The OUTINS or out instruction subroutine is used to get program data and instructions into the calculator. To send a digit or instruction to the calculator chip, use Table II to find the OP code of the instruction you wish to send. Load this OP code into the A accumulator and jump or branch to the OUTINS subroutine. If you have a string of data you wish to send, just recycle thru this subroutine as many times as necessary. The subroutine takes care of all of the READY and HOLD signals to the calculator chip so there is no worry of sending data faster than the calculator chip can accept it. The subroutine destroys the contents of the B accumulator during execution while the contents of the A accumulator and index register are not destroyed. E6 01 OUTINS LDA B 1,X WAIT FOR READY 2A FC BPL OUTINS A7 00 STA A 0,X FORWARD INSTRUCTION TO CALC E6 00 LDA B 0,X CLEAR FLAG BIT C6 3C LDA B #$3C LOW HOLD-NEG READY E7 01 STA B 1,X BRING HOLD LINE LOW E6 01 WAIT10 LDA B 1,X 2A FC BPL WAIT10 LOOP FOR READY LOW E6 00 LDA B 0,X CLEAR FLAG BIT C6 36 LDA B #$36 HIGH HOLD-POS READY E7 01 STA B 1,X RETURN HOLD LINE HGIH 39 RTS SETMEM SUBROUTINE The SETMEM or set memory subroutine initializes the memory locations to which the calculator's output data will be stored. This subroutine must be executed immediately before OUTANS subroutine is used. Although it can be changed, memory locations 0020 thru 002B have been designated the temporary storage locations for the calculator’s. output data. The subroutine sets memory location 0020 to a 00 while locations 21 thru 2B are set to 20 (ASCII spaces). This subroutine destroys the contents of the index register and B accumulator. The contents of the A accumulator are nor destroyed. 7F 00 20 SETMEM CLR $20 CLEAR $0020 CE 00 20 LDX #$20 BOTTOM OF BUFFER C6 20 LDA B #$20 08 LOOP1 INX E7 00 STA B 0,X STORE A SPACE 8C 00 2B CPX #$2B CHEXC FOR TOP OF BUFFER 26 F8 BNE LOOP1 39 RTS OUTANS SUBROUTINE The OUTANS or output answer subroutine outputs the contents of the X register within the calculator chip in BCD to memory locations 0020 thru 002B. Since the mantissa digit count of the calculator is variable, the previous SETMEM subroutine blanks out any digit location not filled by the OUTANS subroutine. It is very important that the SETMEM subroutine be used each time before executing the OUTANS subroutine. The OUTANS subroutine outputs data in two different formats depending upon whether the calculator chip is in the floating point or scientific mode. The calculator initially starts out in the floating point mode where it will remain until changed by the TOGM (22 16) instruction. This calculator does not automatically convert to scientific notation if the numbers become too big to handle in floating point as many do. An MCLR (2F 16) instruction will always reset the calculator chip to the floating point mode regardless of what mode it was in originally. Since the calculator chip does not tell you what mode it is in when it is outputting data, your program must know so you can process the data accordingly. Table IV shows the format in which the data is stored. At the end of the OUTANS subroutine, the N bit of the condition code register is set if an error has transpired since the last execution of the OUTANS subroutine. You may use a BMI instruction to catch and branch to an error routine to note the error. You should then send an ECLR (2B 16) instruction to the calculator chip to reset the calculator chip's error flag. Disregarding the error flag on the calculator chip will cause no problems. The chip will continue to function regardless of the state of the flag. The subroutine requires that the index register be loaded with the "lowest" address of the PIA interfacing to the calculator chip prior to execution. Since the SETMEM subroutine usually run prior to this destroys the contents of the index register, don't forget to reload the index register before branching to the OUTANS subroutine. The OUTANS subroutine destroys the contents of both the A and B accumulators during execution while the contents of the index register is not changed. E6 01 OUTANS LDA B 1,X 2A FC BPL OUTANS A6 00 LDA A 0,X CLEAR FLAG BIT 86 16 LDA A #$16 SEND AN OUT A7 00 STA A 0,X C6 3E LDA B #$3E LOW HOLD-POS READY E7 01 STA B 1,X BRING HOLD LINE LOW E6 01 WAIT30 LDA B 1,X WAIT FOR SECOND READY 2A FC BPL WAIT30 E6 00 LDA B 0,X CLEAR FLAG BIT 86 0F LDA A #$0F A7 00 STA A 0,X SEND A NOP E6 03 WAIT3 LDA B 3,X LOOK FOR R/W STROBE 2B 06 BMI OUTDIG TRANSFER CALC DATA INTO MEMORY E6 01 LDA B 1,X LOOK FOR READY STROBE 2B 16 BMI CONFLG PRINT MEMORY CONTENTS 20 F6 BRA WAIT3 A6 02 OUTDIG LDA A 2,X LOAD OUT DATA INTO A 16 TAB 84 0F AND A #$0F ELIMINATE UPPER 4 BITS 8A 30 ORA A #$30 CONVERT TO ASCII DATA 54 LSR B 54 LSR B 54 LSR B 54 LSR B CA 20 ORA B #$20 INCREMENT ADDRESSES BY $20 F7 01 C6 STA B POINT2+1 STORE OUT DATA SEQUENTIALLY 97 00 POINT2 STA A $0 SELF MODIFING CODE 20 E2 BRA WAIT3 86 36 CONFLG LDA A #$36 HIGH HOLD-POS READY A7 01 STA A 1,X BRING HOLD LINE HIGH A6 00 LDA A 0,X CLEAR FLAG BIT 39 RTS Number Entry Rules When a digit, decimal point, or PI is entered with an 0-9, DP, or PI instruction, the stack is first pushed and the X register cleared: Z -> T, Y -> Z, X -> Y, 0 -> X. This process is referred to as "initiation of number entry." Following this, the digit and future digits are entered into the X mantissa. Subsequent entry of digits or DP, EE, or CS instructions do not cause initiation of number entry. Digits following the eighth mantissa digit are ignored. This number entry mode is terminated by any instruction except 0-9, DP, EE, CS, PI, or HALT. Termination of number entry means two things. First, the number is normalized by adjusting the exponent and decimal point position so that the decimal point is to the right of the first mantissa digit. Second, the next digit, decimal point, or ∏ entered will cause initiation of number entry, as already described. There is one exception to the number entry initiation rule. The stack is not pushed if the instruction prior to the entered digit was an ENTER. However, the X register is still cleared and the entered digit put in X. The ENTER key itself terminates number entry and pushes the stack. The OUT instruction terminates number entry and prepares the stack for pushing upon the next entry of data. This means that if you use the ENTER and OUT instructions consecutively, the stack gets pushed twice which is not what you want. If you wish to ENTER data and immediately OUT the result, use only the OUT instruction. The OUT performs the entry. If you do not wish to OUT the ENTER'ed data, just use the ENTER instruction by itself. The AIN and IN instructions should *not* be used for number entry. Provisions have not been made for their use on this interface.