home *** CD-ROM | disk | FTP | other *** search
/ messroms.de / 2007-01-13_www.messroms.de.zip / CPU / 8041 < prev    next >
Text File  |  2007-01-13  |  16KB  |  241 lines

  1. ----------------------------------------------------------------
  2. |                                                              |
  3. |                                                              |
  4. |                            Intel                             |
  5. |                                                              |
  6. |               88888      000         4      1                |
  7. |              8     8    0   0       44     11                |
  8. |              8     8   0   0 0     4 4      1                |
  9. |               88888    0  0  0    4  4      1                |
  10. |              8     8   0 0   0   4444444    1                |
  11. |              8     8    0   0        4      1                |
  12. |               88888      000         4     111               |
  13. |                                                              |
  14. |          8041/8741 Single-Chip Slave MICROCOMPUTER           |
  15. |             MICRCOMPUTER Instruction Set Summary             |
  16. |                                                              |
  17. |                                                              |
  18. |                                                              |
  19. |                                                              |
  20. |                    _________    _________                    |
  21. |                  _|         \__/         |_                  |
  22. |         <--> T0 |_|1                   40|_| Vcc (+5V)       |
  23. |                  _|                      |_                  |
  24. |       --> XTAL1 |_|2                   39|_| T1 <--          |
  25. |                  _|                      |_                  |
  26. |       --> XTAL2 |_|3                   38|_| P27 <-->        |
  27. |           _____  _|                      |_                  |
  28. |       --> RESET |_|4                   37|_| P26 <-->        |
  29. |              __  _|                      |_                  |
  30. |          --> SS |_|5                   36|_| P25 <-->        |
  31. |              __  _|                      |_                  |
  32. |          --> CS |_|6                   35|_| P24 <-->        |
  33. |                  _|                      |_                  |
  34. |          --> EA |_|7                   34|_| P17 <-->        |
  35. |              __  _|                      |_                  |
  36. |          <-- RD |_|8                   33|_| P16 <-->        |
  37. |                  _|                      |_                  |
  38. |          --> A0 |_|9                   32|_| P15 <-->        |
  39. |              __  _|                      |_                  |
  40. |          <-- WR |_|10       8041       31|_| P14 <-->        |
  41. |                  _|         8741         |_                  |
  42. |        <-- SYNC |_|11                  30|_| P13 <-->        |
  43. |                  _|                      |_                  |
  44. |        <--> DB0 |_|12                  29|_| P12 <-->        |
  45. |                  _|                      |_                  |
  46. |        <--> DB1 |_|13                  28|_| P11 <-->        |
  47. |                  _|                      |_                  |
  48. |        <--> DB2 |_|14                  27|_| P10 <-->        |
  49. |                  _|                      |_                  |
  50. |        <--> DB3 |_|15                  26|_| Vdd             |
  51. |                  _|                      |_                  |
  52. |        <--> DB4 |_|16                  25|_| PROG <-->       |
  53. |                  _|                      |_                  |
  54. |        <--> DB5 |_|17                  24|_| P23 <-->        |
  55. |                  _|                      |_                  |
  56. |        <--> DB6 |_|18                  23|_| P22 <-->        |
  57. |                  _|                      |_                  |
  58. |        <--> DB7 |_|19                  22|_| P21 <-->        |
  59. |                  _|                      |_                  |
  60. |       (GND) Vss |_|20                  21|_| P20 <-->        |
  61. |                   |______________________|                   |
  62. |                                                              |
  63. |                                                              |
  64. |                                                              |
  65. |                                                              |
  66. |                                                              |
  67. |                                                              |
  68. |Written by     Jonathan Bowen                                 |
  69. |               Programming Research Group                     |
  70. |               Oxford University Computing Laboratory         |
  71. |               8-11 Keble Road                                |
  72. |               Oxford OX1 3QD                                 |
  73. |               England                                        |
  74. |                                                              |
  75. |               Tel +44-865-273840                             |
  76. |                                                              |
  77. |Created        May 1983                                       |
  78. |Updated        April 1985                                     |
  79. |Issue          1.1                Copyright (C) J.P.Bowen 1985|
  80. ----------------------------------------------------------------
  81. ----------------------------------------------------------------
  82. |Mnemonic  |Op|CA|F|~|Description              |Notes          |
  83. |----------+--+--+-+-+-------------------------+---------------|
  84. |ADD  A,rr |68|**|A|1|Add register             |A=A+rr         |
  85. |ADD  A,@r |60|**|B|1|Add memory               |A=A+[r]        |
  86. |ADD  A,#n |03|**|C|2|Add immediate            |A=A+n          |
  87. |ADDC A,rr |78|**|A|1|Add with Carry register  |A=A+rr+C       |
  88. |ADDC A,@r |70|**|B|1|Add with Carry memory    |A=A+[r]+C      |
  89. |ADDC A,#n |13|**|C|2|Add with Carry immediate |A=A+n+C        |
  90. |ANL  A,rr |58|--|A|1|AND Logical register     |A=A&rr         |
  91. |ANL  A,@r |50|--|B|1|AND Logical memory       |A=A&[r]        |
  92. |ANL  A,#n |53|--|C|2|AND Logical Immediate    |A=A&n          |
  93. |ANL  pp,#n|98|--|D|2|AND Logical I/O port     |pp=pp&n        |
  94. |ANLD ep,A |9C|--|E|2|AND Logical expander port|ep=ep&A        |
  95. |CALL a    |14|--|F|2|Call subroutine          |[SP]+={PSW,PC},|
  96. |CLR  A    |27|--|G|1|Clear accumulator        |A=0        PC=a|
  97. |CLR  C    |97|0-|G|1|Clear carry status       |C=0            |
  98. |CLR  F0   |85|--|G|1|Clear flag #0            |F0=0           |
  99. |CLR  F1   |A5|--|G|1|Clear flag #1            |F1=0           |
  100. |CPL  A    |37|--|G|1|Complement accumulator   |A=~A           |
  101. |CPL  C    |A7|*-|G|1|Complement carry status  |C=~C           |
  102. |CPL  F0   |95|--|G|1|Complement flag #0       |F0=~F0         |
  103. |CPL  F1   |B5|--|G|1|Complement flag #1       |F1=~F1         |
  104. |DA   A    |57|--|G|1|Decimal Adjust acc.      |A=BCD{A}       |
  105. |DEC  A    |07|--|G|1|Decrement accumulator    |A=A-1          |
  106. |DEC  rr   |C8|--|A|1|Decrement register       |rr=rr-1        |
  107. |DIS  I    |15|--|G|1|Disable external int.    |               |
  108. |DIS  TCNTI|35|--|G|1|Disable timer interrupt  |               |
  109. |DJNZ rr,l |E8|--|H|2|Dec. and Jump if Non-Zero|rr=rr-1,if rr  |
  110. |EN   I    |05|--|G|1|Enable external interrupt|               |
  111. |EN   TCNTI|25|--|G|1|Enable timer interrupt   |               |
  112. |IN   A,p  |08|--|I|2|Input from I/O port      |A=p            |
  113. |IN   A,DBB|22|--|G|1|Input from data bus      |A=bus          |
  114. |INC  A    |17|--|G|1|Increment accumulator    |A=A+1          |
  115. |INC  rr   |18|--|A|1|Increment register       |rr=rr+1        |
  116. |INC  @r   |10|--|B|1|Increment memory         |[r]=[r]+1      |
  117. |JBn  l    |12|--|J|2|Jump if Bit set (n=0-7)  |If A<n>=1      |
  118. |JC   l    |F6|--|K|2|Jump if Carry set        |If C=1         |
  119. |JF0  l    |B6|--|K|2|Jump if Flag #0 set      |If F0=1        |
  120. |JF1  l    |76|--|K|2|Jump if Flag #1 set      |If F1=1        |
  121. |JMP  a    |04|--|F|2|Unconditional Jump       |PC=a           |
  122. |JMPP @A   |B3|--|G|2|Jump on accumulator      |PC=PC<8:11>+A  |
  123. |JNC  l    |E6|--|K|2|Jump if Not Carry        |If C=0         |
  124. |JNIBF l   |D6|--|K|2|Jump if Not IBF          |If IBF=0       |
  125. |JNT0 l    |26|--|K|2|Jump if Not Test i/p #0  |If T0=0        |
  126. |JNT1 l    |46|--|K|2|Jump if Not Test i/p #1  |If T1=0        |
  127. |JNZ  l    |96|--|K|2|Jump if Not Zero         |If A<>0        |
  128. |JTF  l    |16|--|K|2|Jump if Timer Flag set   |If TF=1, TF=0  |
  129. |JT0  l    |36|--|K|2|Jump if Test i/p #0 set  |If T0=1        |
  130. |JT1  l    |56|--|K|2|Jump if Test i/p #1 set  |If T1=1        |
  131. |JZ   l    |C6|--|K|2|Jump if Zero             |If A=0         |
  132. |MOV  A,#n |23|--|C|2|Move from immediate      |A=n            |
  133. |MOV  A,PSW|C7|--|G|1|Move from PSW            |A=PSW          |
  134. |MOV  A,rr |F8|--|A|1|Move from register       |A=rr           |
  135. |MOV  A,@r |F0|--|B|1|Move from memory         |A=[r]          |
  136. |MOV  A,T  |42|--|G|1|Move from timer          |A=T            |
  137. |MOV  PSW,A|D7|**|G|1|Move to PSW              |PSW=A          |
  138. |MOV  rr,A |A8|--|A|1|Move to register         |rr=A           |
  139. |MOV  rr,#n|B8|--|L|2|Move immediate to reg.   |rr=n           |
  140. |MOV  @r,A |A0|--|B|1|Move to memory           |[r]=A          |
  141. |MOV  @r,#n|B0|--|M|2|Move immediate to memory |[r]=n          |
  142. |MOV  T,A  |62|--|G|1|Move to timer            |T=A            |
  143. |MOVD A,ep |0C|--|E|2|Move from expander port  |A=ep           |
  144. |MOVD ep,A |3C|--|E|2|Move to expander port    |ep=A           |
  145. |MOVP A,@A |A3|--|G|1|2|Move from memory       |A=[PC<8:11>+A] |
  146. |MOVP3 A,@A|E3|--|G|2|Move from memory         |A=[300H+A]     |
  147. |NOP       |00|--|G|1|No Operation             |               |
  148. |ORL  A,rr |48|--|A|1|OR Logical register      |A=Avrr         |
  149. |ORL  A,@r |40|--|B|1|OR Logical memory        |A=Av[r]        |
  150. |ORL  A,#n |43|--|C|2|OR Logical immediate     |A=Avn          |
  151. |ORL  pp,#n|88|--|D|2|OR Logical I/O port      |pp=ppvn        |
  152. |ORLD ep,A |8C|--|E|2|OR Logical expander port |ep=epvA        |
  153. |OUT  DBB,A|02|--|G|1|Output to bus            |bus=A          |
  154. |OUTL p,A  |38|--|I|2|Output to I/O port       |p=A            |
  155. |RET       |83|--|G|2|Return from subroutine   |PC=[SP]-       |
  156. |RETR      |93|**|G|2|Return and Restore status|{PC,PSW}=[SP]- |
  157. |RL   A    |E7|--|G|1|Rotate Left              |A={A}<-        |
  158. |RLC  A    |F7|*-|G|1|Rotate Left thru Carry   |A={A,C}<-      |
  159. |RR   A    |77|--|G|1|Rotate Right             |A=->{A}        |
  160. ----------------------------------------------------------------
  161. ----------------------------------------------------------------
  162. |Mnemonic  |Op|CA|F|~|Description              |Notes          |
  163. |----------+--+--+-+-+-------------------------+---------------|
  164. |RRC  A    |67|*-|G|1|Rotate Right thru Carry  |A=->{C,A}      |
  165. |STOP TCNT |65|--|G|1|Stop timer/counter       |               |
  166. |STRT CNT  |45|--|G|1|Start counter            |               |
  167. |STRT T    |55|--|G|1|Start timer              |               |
  168. |SWAP A    |47|--|G|1|Swap accumulator nibbles |A<0:3><->A<4:7>|
  169. |XCH  A,rr |28|--|A|1|Exchange register        |A<->rr         |
  170. |XCH  A,@r |20|--|B|1|Exchange memory          |A<->[r]        |
  171. |XCHD A,@r |30|--|B|1|Exchange lower nibbles   |A<0:3><->[r<:>]|
  172. |XRL  A,rr |D8|--|A|1|Exclusive OR register    |A=Axrr         |
  173. |XRL  A,@r |D0|--|B|1|Exclusive OR memory      |A=Ax[r]        |
  174. |XRL  A,#n |D3|--|C|2|Exclusive OR immediate   |A=Axn          |
  175. |-------------+--+-+-+-----------------------------------------|
  176. | PSW         |-*| | |Flag unaffected/affected or zero (0)     |
  177. | C           |C | | |Carry (Bit 7)                            |
  178. | AC          | A| | |Auxilary Carry (Bit 6)                   |
  179. | F0          |  | | |General purpose Flag #0 (Bit 5)          |
  180. | F1          |  | | |General purpose Flag #1 (Bit 4)          |
  181. | SP          |  | | |Stack Pointer (Bits 0-2)                 |
  182. |----------------+-+-+-----------------------------------------|
  183. | -----nnn       |A| |nnn = R0/R1/R2/R3/R4/R5/R6/R7 (3 bits)   |
  184. | -------r       |B| |r   = R0/R1 (1 bit)                      |
  185. | -------- MM    |C| |MM  = 8 bits of immediate data           |
  186. | ------pp MM    |D| |pp  = 01 for P1 or 10 for P2 (2 bits)    |
  187. | ------ee       |E| |ee  = P4/P5/P6/P7 (2 bits)               |
  188. | xxx----- XX    |F| |xxx = high-order 3 bits of memory address|
  189. | --------       |G| |XX  = low-order 8 bits of memory address |
  190. | -----nnn XX    |H| |nnn = as above                           |
  191. | ------qq       |I| |qq  = as pp above                        |
  192. | bbb----- XX    |J| |bbb = 3-bit bit number of accumulator    |
  193. | -------- XX    |K| |XX  = as above                           |
  194. | -----nnn MM    |L| |nnn = as above                           |
  195. | -------r MM    |M| |r   = as above                           |
  196. |--------------------+-----------------------------------------|
  197. | A                  |Accumulator (8-bit)                      |
  198. | IBF                |Input Buffer Full flag (1-bit)           |
  199. | OBF                |Output Buffer Full flag (1-bit)          |
  200. | P1                 |I/O Ports #1 (8-bit)                     |
  201. | P2                 |I/O Ports #2 (8-bit)                     |
  202. | PC                 |Program Counter register (12-bit)        |
  203. | PORT               |I/O Port P1 and P2                       |
  204. | PSW                |Processor Status Word (8-bit)            |
  205. | Rn                 |Registers (8-bit, n=0-7)                 |
  206. | Rn'                |Alternative Registers (8-bit, n=0-7)     |
  207. | T0                 |Test input #0                            |
  208. | T1                 |Test input #1                            |
  209. |--------------------+-----------------------------------------|
  210. | a                  |11-bit address quantity (0 to 2047)      |
  211. | ep                 |8243 expander port P4, P5, P6 or P7      |
  212. | k                  |1-bit data quantity (0 or 1)             |
  213. | l                  |Low-order 8 bits of a memory address     |
  214. | n                  |8-bit data quantity (0 to 255)           |
  215. | p                  |I/O port P1 or P2                        |
  216. | pp                 |I/O port PORT, P1 or P2                  |
  217. | r                  |Register R0 or R1                        |
  218. | rr                 |Register R0, R1, R2, R3, R4, R5, R6 or R7|
  219. |--------------------+-----------------------------------------|
  220. | +                  |Arithmetic addition                      |
  221. | -                  |Arithmetic subtraction                   |
  222. | &                  |Logical AND                              |
  223. | ~                  |Logical NOT                              |
  224. | v                  |Logical inclusive OR                     |
  225. | x                  |Logical exclusive OR                     |
  226. | <-                 |Rotate left                              |
  227. | ->                 |Rotate right                             |
  228. | <->                |Exchange                                 |
  229. | < >                |Bit number                               |
  230. | < : >              |Bit range                                |
  231. | [ ]                |Indirect addressing                      |
  232. | [ ]+               |Indirect addressing auto-increment       |
  233. | -[ ]               |Auto-decrement indirect addressing       |
  234. | { }                |Combination of operands                  |
  235. |--------------------+-----------------------------------------|
  236. | 00H to 07H         |General purpose registers R0-R7 (8-bit)  |
  237. | 08H to 17H         |Stack area S0-S7 (16-bit)                |
  238. | 18H to 1FH         |Alternative registers R0'-R7' (8-bit)    |
  239. | 20H to 3FH         |General scratchpad memory area           |
  240. ----------------------------------------------------------------
  241.