Sign in
0
  0,00€

Instruction list

LB
Load B Indirect
2cy.
Sixteen consecutive locations on ROM page 3 (I2) contain data which can be loaded into the eight least significant bits of the B register by use of any LB instruction. The four most significant bits of B register will be loaded with zeroes. The contents of the SB register will be destroyed. This instruction takes two cycles to execute but occupies only one ROM word. (Automatic return)
SB<-SA SA<-P P(12:5)<-00001100 P(4:1)<-I1(4:1) BU<-0000 B(8:1)<-|I2(8:1)| P<-SA SA<->SB
LBL
Load B Long
2cy.
This instruction occupies two ROM words, the second of which will be loaded into the eight least significant bits of the B register. The four most significant bits of B (BU) will be loaded with zeroes.
BU<-0000 B(8:1)<-|I2(8:1)|
CYS
Cycle SA register and Accumulator
1cy.
A 4-bit right shift of the SA register takes place with the four bits which are shifted off the end of SA being transferred into the accumulator. The contents of the accumulator are placed in the left end of SA register.
A<-SA(4:1) SA(4:1)<-SA(8:5) SA(8:5)<-SA(12:9) SA(12:9)<-A
SAG
Special Address Generation
1cy.
This instruction causes the eight most significant bits of the RAM address output to be zeroed during the next cycle only. Note that this instruction does not alter the contents of the B register.
A/B Bus(12:5)<-0000 0000 A/B Bus(4:1)<-BL(4:1) Contents of 'B' remain unchanged
LABL
Load Accumulator with BL
1cy.
The contents of BL register are transferred to the Accumulator.
A<-BL
LD
Load Accumulator from Memory
1cy.
The 4-bit contents of RAM currently addressed by B register are placed in the accumulator. The RAM address in the B register is then modified by the result of an exclusive OR of the 3-bit immediate field I(3:1) and B(7:5).
A<-M B(7:5)<-B(7:5)xor|I(3:1)|
INCB
Increment BL
1cy.
BL register (least significant four bits of B register) is incremented by 1. If the new contents of BL is 0000, then the next ROM word will be ignored.
BL<-BL+1 Skip on BL=0000
DECB
Decrement BL
1cy.
BL register (least significant four bits of B register) is decremented by 1. If the new contents of BL is 1111, then the next ROM word will be ignored.
BL<-BL-1 Skip on BL=1111
RTN
Return
1cy.
This instruction executes a return from subroutine by loading contents of SA register into P register and interchange the SB and SA registers.
P<-SA SA<->SB
RTNSK
Return and Skip
1cy.
Same as RTN except the first ROM word encountered after the return from subroutine is skipped.
P<-SA SA<->SB P<-P+1
XS
Exchange SA and SB
1cy.
The 12-bit contents of SA register and SB register are exchanged
SA<->SB
AD
Add
1cy.
The result of binary addition of contents of accumulator and 4-bit contents of the RAM currently addressed by B register, replaces the contents of accumulator. The resulting carry-out is loaded into C flip-flop.
C,A<-A+M
ADC
Add with carry-in
1cy.
Same as AD except the C flip-flop serves as a carry-in to the adder.
C,A<-A+M+C
ADCSK
Add with carry-in and skip on carry-out
1cy.
Same as ADSK except the C flip-flop serves as a carry-in to the adder.
C,A<-A+M+C Skip if C=1
ADSK
Add and skip on carry-out
1cy.
Same as AD except the next ROM word will be skipped (ignored) if a carry-out is generated.
C,A<-A+M Skip if C=1
AND
Logical AND
1cy.
The result of logical AND of accumulator and 4-bit contents of RAM currently addressed by B register replaces contents of accumulator.
A<-A&M
OR
Logical OR
1cy.
The result of logic OR of accumulator and 4-bit contents of RAM currently addressed by B register replaces contents of accumulator.
A<-A|M
EOR
Logical Exclusive-OR
1cy.
The result of logic Exclusive-OR of accumulator and 4-bit contents of RAM currently addressed by B register replaces contents of accumulator.
A<-A^M
COMP
Complement
1cy.
Each bit of the accumulator is logically complemented and placed in the accumulator.
A<-~A
XABL
Exchange Accumulator and BL
1cy.
The contents of accumulator and BL register are exchanged.
A<->BL
LBUA
Load BU with A
1cy.
The contents of accumulator are transferred to BU register. Also, the contents of currently addressed RAM are transferred to accumulator.
BU<-A A<-M
LBMX
Load BM with X
1cy.
The contents of X register are transferred to BM register.
BM<-X
XBMX
Exchange BM and X
1cy.
The contents of BM register and X register are exchanged
X<->BM
XAX
Exchange Accumulator and X
1cy.
The contents of accumulator and X register are exchanged
X<->A
LAX
Load Accumulator from X Register
1cy.
The 4-bit contents of the X register are placed in the accumulator.
A<-X
LXA
Load X Register from Accumulator
1cy.
The contents of the accumulator are transferred to the X register.
X<-A
DIA
Discrete Input Group A
1cy.
Data at the inputs to discrete: Group A is transferred to the accumulator.
A<-DIA
DIB
Discrete Input Group B
1cy.
Data at the inputs to discrete: Group B is transferred to the accumulator.
A<-DIB
DOA
Discrete Output
1cy.
The contents of the accumulator are transferred to the discrete output register.
DOA<-A
IOL
Input/Output Long
2cy.
This instruction occupies two ROM words and requires two cycles for execution. The first ROM word is I/O Enable signal. The second ROM word is then received by the I/O devices and decoded for address and command. The contents of the accumulator inverted are placed on the data lines for acceptance by the I/O. At the same time, input data received by the I/O device is transferred to the accumulator inverted.
/A->Data Bus A<-/Data Bus I2->I/O Device
T
Transfer
1cy.
An unconditional transfer to a ROM word on the current page takes place. The least significant 6-bits of P register P(6:1) are replaced by six bit immediate field I(6:1)
P(6:1)<-I(6:1)
TL
Transfer Long
2cy.
This instruction executes a transfer to any ROM word on any page. It occupies two ROM words and requires two cycles for execution. The first byte loads P(12:9) with field I1(4:1) and then the second byte I2(8:1) is placed in P(8:1)
P(12:9)<-I1(4:1) P(8:1)<-I2(8:1)
TML
Transfer and Mark Long
2cy.
This instruction executes a transfer and mark to any location on ROM page 4 through 15. It occupies two ROM words and requires two cycle times for execution.
SB<-SA SA<-P P(12:9)<-I1(4:1) P(8:1)<-I2(8:1)
TM
Transfer and Mark Indirect
2cy.
48 consecutive locations on ROM page 3 contains pointer data which identify subroutine entry addresses. These subroutine entry addresses are limited to pages 4 through 7. This TM instruction will save the address of the next ROM word in the SA register after loading the original contents of SA into SB. A transfer then occurs to one of the subroutine entry addresses. This instruction occupies one ROM word but takes two cycles for execution.
SB<-SA SA<-P P(12:7)<-000011 P(6:1)<-I1(8:1) P(12:9)<-0001 P(8:1)<-I2(8:1)
LDI
Load Accumulator Immediate
1cy.
The 4-bit contents, immediate field I[4:1], of the instruction are placed in accumulator.
A<-|I(4:1)|
ADI
Add Immediate and skip on carry-out
1cy.
The result of binary addition of contents of accumulator and 4-bit immediate field of instruction word replaces the contents of accumulator. The next ROM word will be skipped (ignored) if a carry-out is generated. This instruction does not use or change the C flip-flop. The immediate field I(4:1) of this instruction may not be equal to binary 0000 or 1010 (See CYS and DC)
A<-A+|I(4:1)| Skip if carry-out=one I(4:1)!=0000 I(4:1)!=1010
DC
Decimal Correction
1cy.
Binary 1010 is added to contents of accumulator. Result is stored in accumulator. Instruction does not use or change carry flip-flop or skip.
A<-A+|I(4:1)| Skip if carry-out=one I(4:1)!=0000 I(4:1)!=1010
SKZ
Skip on Accumulator Zero
1cy.
The next ROM word will be ignored if accumulator is 0.
skip if A=0000
SKF2
Skip if FF2 Equals 1
1cy.
The next ROM word will be ignored if FF2 is 1.
skip if FF2=1
SKF1
Skip if FF1 Equals 1
1cy.
The next ROM word will be ignored if FF1 is 1.
skip if FF1=1
SKC
Skip on Carry flip-flop
1cy.
The next ROM word will be ignored if C flip-flop is 1.
skip if C=1
SKBI
Skip if BL equals to Immediate.
1cy.
The next ROM word will be ignored if the the least significant four bits of B register (BL) is equal to the 4-bit immediate field I(4:1) of instruction.
skip if BL=I(4:1)
RF1
Reset FF1
1cy.
Flip-flop 1 is set to 0.
FF1<-0
SF1
Set FF1
1cy.
Flip-flop 1 is set to 1.
FF1<-1
SF2
Set FF2
1cy.
Flip-flop 2 is set to 1.
FF2<-1
SC
Set Carry flip-flop
1cy.
The C Flip-flop is set to 1.
C<-1
RC
Reset Carry flip-flop
1cy.
The C Flip-flop is set to 0.
C<-0
RF2
Reset FF2
1cy.
Flip-flop 2 is set to 0.
FF2<-0
EXD
Exchange Accumulator and Memory and decrement BL
1cy.
Same as EX except RAM address in B register is further modified by decrementing BL by 1. If the new contents of BL is 1111, the next ROM word will be ignored
A<->M B(7:5)<-B(7:5)xor|I(3:1)| BL<-BL-1 skip on BL=1111
EX
Exchange Accumulator and Memory
1cy.
Same as LD except the contents of accumulator are also placed in currently addressed RAM location.
A<->M B(7:5)<-B(7:5)xor|I(3:1)|

Notes:

Only the first occurrence of an LDI in a consecutive string of LDI's will be executed. The program will ignore the remaining LDI's and execute next valid instruction.

Only the first occurrence of an LB or LBL instruction in a consecutive string of LB or LBL will be executed. The program will ignore the remaining LB or LBL and execute next valid instruction. Within subroutines the LB instruction must be used with caution because the contents of SB have been modified.

DOA has got additional features on PPS-4/2 compared to PPS-4.

0x00
LBL
0x01
TML
0x02
TML
0x03
TML
0x04
LBUA
0x05
RTN
0x06
XS
0x07
RTNSK
0x08
ADCSK
0x09
ADSK
0x0A
ADC
0x0B
AD
0x0C
EOR
0x0D
AND
0x0E
COMP
0x0F
OR
0x10
LBMX
0x11
LABL
0x12
LAX
0x13
SAG
0x14
SKF2
0x15
SKC
0x16
SKF1
0x17
INCB
0x18
XBMX
0x19
XABL
0x1A
XAX
0x1B
LXA
0x1C
IOL
0x1D
DOA
0x1E
SKZ
0x1F
DECB
0x20
SC
0x21
SF2
0x22
SF1
0x23
DIB
0x24
RC
0x25
RF2
0x26
RF1
0x27
DIA
0x28
EXD
0x29
EXD
0x2A
EXD
0x2B
EXD
0x2C
EXD
0x2D
EXD
0x2E
EXD
0x2F
EXD
0x30
LD
0x31
LD
0x32
LD
0x33
LD
0x34
LD
0x35
LD
0x36
LD
0x37
LD
0x38
EX
0x39
EX
0x3A
EX
0x3B
EX
0x3C
EX
0x3D
EX
0x3E
EX
0x3F
EX
0x40
SKBI
0x41
SKBI
0x42
SKBI
0x43
SKBI
0x44
SKBI
0x45
SKBI
0x46
SKBI
0x47
SKBI
0x48
SKBI
0x49
SKBI
0x4A
SKBI
0x4B
SKBI
0x4C
SKBI
0x4D
SKBI
0x4E
SKBI
0x4F
SKBI
0x50
TL
0x51
TL
0x52
TL
0x53
TL
0x54
TL
0x55
TL
0x56
TL
0x57
TL
0x58
TL
0x59
TL
0x5A
TL
0x5B
TL
0x5C
TL
0x5D
TL
0x5E
TL
0x5F
TL
0x60
ADI
0x61
ADI
0x62
ADI
0x63
ADI
0x64
ADI
0x66
ADI
0x67
ADI
0x68
ADI
0x69
ADI
0x6A
ADI
0x6B
ADI
0x6C
ADI
0x6D
ADI
0x6E
ADI
0x65
DC
0x6F
CYS
0x70
LDI
0x71
LDI
0x72
LDI
0x73
LDI
0x74
LDI
0x75
LDI
0x76
LDI
0x77
LDI
0x78
LDI
0x79
LDI
0x7A
LDI
0x7B
LDI
0x7C
LDI
0x7D
LDI
0x7E
LDI
0x7F
LDI
0x80
T
0x81
T
0x82
T
0x83
T
0x84
T
0x85
T
0x86
T
0x87
T
0x88
T
0x89
T
0x8A
T
0x8B
T
0x8C
T
0x8D
T
0x8E
T
0x8F
T
0x90
T
0x91
T
0x92
T
0x93
T
0x94
T
0x95
T
0x96
T
0x97
T
0x98
T
0x99
T
0x9A
T
0x9B
T
0x9C
T
0x9D
T
0x9E
T
0x9F
T
0xA0
T
0xA1
T
0xA2
T
0xA3
T
0xA4
T
0xA5
T
0xA6
T
0xA7
T
0xA8
T
0xA9
T
0xAA
T
0xAB
T
0xAC
T
0xAD
T
0xAE
T
0xAF
T
0xB0
T
0xB1
T
0xB2
T
0xB3
T
0xB4
T
0xB5
T
0xB6
T
0xB7
T
0xB8
T
0xB9
T
0xBA
T
0xBB
T
0xBC
T
0xBD
T
0xBE
T
0xBF
T
0xC0
LB
0xC1
LB
0xC2
LB
0xC3
LB
0xC4
LB
0xC5
LB
0xC6
LB
0xC7
LB
0xC8
LB
0xC9
LB
0xCA
LB
0xCB
LB
0xCC
LB
0xCD
LB
0xCE
LB
0xCF
LB
0xD0
TM
0xD1
TM
0xD2
TM
0xD3
TM
0xD4
TM
0xD5
TM
0xD6
TM
0xD7
TM
0xD8
TM
0xD9
TM
0xDA
TM
0xDB
TM
0xDC
TM
0xDD
TM
0xDE
TM
0xDF
TM
0xE0
TM
0xE1
TM
0xE2
TM
0xE3
TM
0xE4
TM
0xE5
TM
0xE6
TM
0xE7
TM
0xE8
TM
0xE9
TM
0xEA
TM
0xEB
TM
0xEC
TM
0xED
TM
0xEE
TM
0xEF
TM
0xF0
TM
0xF1
TM
0xF2
TM
0xF3
TM
0xF4
TM
0xF5
TM
0xF6
TM
0xF7
TM
0xF8
TM
0xF9
TM
0xFA
TM
0xFB
TM
0xFC
TM
0xFD
TM
0xFE
TM
0xFF
TM