architecture eight-digit BCD register file: X Y Z T M(memory) -- 8 mantissa, 2 exponent, D.P. position, -- sign bit for mantissa and for exponent -- toggle between Floating Point or Sci. Notation -- mantissa digit count MDC can be set 1 to 8! 4-bit BCD I/O path HOLD input, RDY output pins F1, F2, ERROR outputs 4 clocks per cycle with SYNC output every 10uS 6 bit instruction/data: ISEL=0 -> 4 bits of data + JC + /ADR ISEL=1 -> 6 bits instruction HOLD input to delay RDY /BR output if a TEST X = 0 is true with microprocessor operation: enter numbers as instructions handshaked by RDY mantissa (CS) EE exponent 1 2 3 4 5 EE 2 instructions, 2 word - 1st word is six LSBits, bits 7 and 8 are EH (external hardware) features - 2nd word is six LSBits, depends on 1st word instruction INV *** where *** is SIN COS TAN + - x / SMDC N where N is mantiss count 1 to 8 (IN, OUT others not likely used) instructions, 1 word - six LSBits, bits 7 and 8 are EH (external hardware) features Number using AIN 0 through 9, DP or PI - DP decimal point - PI is 3.14.59.. Instruction values in hex (docs show octal) ------------------------------------------- 00-09 digits 0A DP decimal point, digits following are fraction 0B EE enter exponent, digits following are exp OC CS change sign of mantisa or exp 0D PI 3.1415927 0E AIN read digit one D4-D1 0F HALT generates HOLD=1 10 TJC if I6=1 branch 11 TX if X=0 branch 12 TXLT0 if abs(x) < 1.0 branch 14 TERR on error branch 15 JMP branch 16 OUT 17 IN 18 SMDC set mantissa digit count 1 to 8 19 IBNZ incr mem and branch if M<>0 1A DBNZ decr mem and branch if M<>0 1B XEM exchange X and M 1C MS memory store X->M 1D MR memory recall M->X->Y->Z 1E LSH left shift Xm mantissa shift thru link, LSDigit 0 1F RSH right shift Xm mantissa shift from link, LSdigit lost 20 INV inverse or memory of next function 21 EN enter opr 22 TOGM toggle mode float/scientif 23 ROLL roll stack 24 SIN sin x 25 COS cos x 26 TAN tan x 27 SF1 set flag 1 28 PF1 pulse flag 1 29 SF2 set flag 2 2A PF2 pulse flag 2 2B ECLR error flag clear 2C RTD radians to degrees 2D DTR degrees to radians 2E POP stack 2F MCLR master clear, initialization 30 XEY exchange X and Y 31 EX e**X 32 10X 10**X->X (call it TENX?) 33 SQ square of X 34 SQRT square root of X -> X 35 LN log e of X 36 LOG log 10 of X 37 1/X 1/X->X (call it ONE/X?) 38 YTOX Y**X 39 PLUS Y+X->X 3A MINUS Y-X->X 3B TIMES Y*X->X 3C DIVIDE Y/X->X 3D PRW1 pulse R/W 1 3E PRW2 pulse R/W 2 3F NOP IN / OUT data format -------------------- digit is 0-9 in lower 4 bits of byte size of mantissa set by SMDC instruction sign is negative when sign-bit is 1 MSDigit is most signifigant digit 0-9 LDDigit is least signifigant digit 0-9 Scientific format by byte - exp signs mantissa 0 MSDigit of exponent 1 LSDigit of exponent 2 M 0 0 E M is sign bit of mantissa E is sign bit of exponent 3 unused apparently 4 MSDigit of mantissa must be nonzero, decimal point follows this digit 5 next digit ... ? LSdigit of mantissa Floating point format by byte signs DP mantissa 0 M 0 0 0 M is sign bit of mantissa 1 DP POS, number of digits up to 11 2 MSDigit of mantissa 3 next digit ... ? LSdigit of mantissa