6809ist

  • Uploaded by: Michael Evenson
  • 0
  • 0
  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View 6809ist as PDF for free.

More details

  • Words: 2,006
  • Pages: 5
6809 Instruction Set

http://ironbark.bendigo.latrobe.edu.au/staff/mal/6809.htm

6809 Instruction Set Addressing Mode CC bit Immediate Direct Indexed Extended Inherent 5 3 21 0 Instruction Mnemonic Op ~ # Op ~ # Op ~ # Op ~ # Op ~ # Description HNZVC ABX 3A 3 1 X = B+X (Unsigned) + + ++ + ADCA 89 2 2 99 4 2 A9 4+ 2+ B9 5 3 A = A+M+C + + ++ + ADC ADCB C9 2 2 D9 4 2 E9 4+ 2+ F9 5 3 B = B+M+C + + ++ + ADDA 8B 2 2 9B 4 2 AB 4+ 2+ BB 5 3 A = A+M + + ++ + ADD ADDB CB 2 2 DB 4 2 EB 4+ 2+ FB 5 3 B = B+M + + ++ + ADDD C3 4 3 D3 6 2 E3 6+ 2+ F3 7 3 D = D+M:M+1 + ++ + ANDA 84 2 2 94 4 2 A4 4+ 2+ B4 5 3 A = A && M + +0 AND ANDB C4 2 2 D4 4 2 E4 4+ 2+ F4 5 3 B = B && M + +0 ANDCC 1C 3 2 C = CC && IMM ? ? ? ? ? ASLA 48 2 1 8 ++++ Arithmetic ASL ASLB 58 2 1 shift 8 ++++ left ASL 08 6 2 68 6+ 2+ 78 7 3 8 ++++ ASRA 47 2 1 8 ++ + Arithmetic ASR ASRB 57 2 1 shift 8 ++ + right ASR 07 6 2 67 6+ 2+ 77 7 3 8 ++ + BITA 85 2 2 95 4 2 A5 4+ 2+ B5 5 3 Bit Test A (M&&A) + +0 BIT BITB C5 2 2 D5 4 2 E5 4+ 2+ F5 5 3 Bit Test B (M&&B) + +0 CLRA 4F 2 1 A = 0 0 10 0 CLR CLRB 5F 2 1 B = 0 0 10 0 CLR 0F 6 2 6F 6+ 2+ 7F 7 3 M=0 0 10 0 CMPA 81 2 2 91 4 2 A1 4+ 2+ B1 5 3 Compare M from A 8 + + + + CMPB C1 2 2 D1 4 2 E1 4+ 2+ F1 5 3 Compare M from B 8 + + + + 10 5 4 10 7 3 10 7+ 3+ 10 8 4 Compare M:M+1 CMPD ++++ 83 93 A3 B3 from D 11 5 4 11 7 3 11 7+ 3+ 11 8 4 Compare M:M+1 CMPS ++++ 8C 9C AC BC from S CMP 11 5 4 11 7 3 11 7+ 3+ 11 8 4 Compare M:M+1 CMPU ++++ 83 93 A3 B3 from U 4 3 9C 6 2 AC 6+ 2+ BC 7 3 Compare M:M+1 CMPX 8C ++++ from X 10 5 4 10 7 3 10 7+ 3+ 10 8 4 Compare M:M+1 CMPY ++++ 8C 9C AC BC from Y COMA 43 2 1 A = complement(A) ++0 1 COM COMB 53 2 1 B = complement(B) ++0 1 COM 03 6 2 63 6+ 2+ 73 7 3 M = complement(M) ++0 1 => CC = CC ^ IMM; CWAI 3C 2 7 20 Wait for Interrupt DAA 19 2 1 Decimal Adjust A ++0 + DECA 4A 2 1 A = A 1 +++ DEC DECB 5A 2 1 B = B 1 +++ DEC 0A 6 2 6A 6+ 2+ 7A 7 3 M=M 1 +++

6809 Instruction Set

EOR EXG INC

http://ironbark.bendigo.latrobe.edu.au/staff/mal/6809.htm

EORA EORB R1,R2 INCA INCB INC

88 2 C8 2 1E 8

2 98 4 2 A8 4+ 2+ B8 5 3 2 D8 4 2 E8 4+ 2+ F8 5 3 2

A = A XOR M B = M XOR B exchange R1,R2 4C 2 1 A = A + 1 5C 2 1 B = B + 1 0C 6 2 6C 6+ 2+ 7C 7 3 M=M+1 0E 3 2 6E 3+ 2+ 7E 4 3 pc = EA 9D 7 2 AD 7+ 2+ BD 8 3 jump to subroutine

JMP JSR

6809 Instruction Set Addressing Mode Immediate Direct Indexed Extended Inherent Instruction Mnemonic Op ~ # Op ~ # Op ~ # Op ~ # Op ~ # LDA 86 2 2 96 4 2 A6 4+ 2+ B6 5 3 LDB C6 2 2 D6 4 2 E6 4+ 2+ F6 5 3 LDD CC 3 3 DC 5 2 EC 5+ 2+ FC 6 3 10 4 4 10 6 3 10 6+ 3+ 10 7 4 LDS LD CE DE EE FE LDU CE 3 3 DE 5 2 EE 5+ 2+ FE 6 3 LDX 8E 3 3 9E 5 2 AE 5+ 2+ BE 6 3 10 4 4 10 6 3 10 6+ 3+ 10 7 4 LDY 8E 9E AE BE LEAS 32 4+ 2+ LEAU 33 4+ 2+ LEA LEAX 30 4+ 2+ LEAY 31 4+ 2+ LSLA 48 2 1 LSL LSLB 58 2 1 LSL 08 6 2 68 6+ 2+ 78 7 3 LSRA 44 2 1 LSR LSRB 54 2 1 LSR 04 6 2 64 6+ 2+ 74 7 3 MUL NEG

NEGA NEGB NEG

OR

PSHS PSH PSHU

2 2

12

2

00 6 2 60 6+ 2+ 70 7 3

NOP ORA ORB ORCC

40 50

8A CA 1A 34

2 2 3 5+

2 9A 4 2 AA 4+ 2+ BA 5 3 2 DA 4 2 EA 4+ 2+ FA 5 3 2 2

36 5+ 2

+++ +++ +++

Description A=M B=M D = M:M+1

CC bit 5 3 21 0 HNZVC + +0 + +0 ++0

S = M:M+1

++0

U = M:M+1 X = M:M+1

++0 ++0

Y = M:M+1

++0

S = EA U = EA X = EA Y = EA Logical shift left Logical shift right

D = A*B (Unsigned) 1 A = !A + 1 1 B = !B + 1 M = !M + 1 1 No Operation A = A || M B = B || M C = CC || IMM Push Registers on S Stack Push Registers on U Stack

3D 11 1

+ +0 + +0

+ + + 0 0 0

+ + +++ +++ +++ + + + + + + +

9

8 ++++ 8 ++++ 8 ++++ + +0 + +0 ? ? ? ? ?

6809 Instruction Set

http://ironbark.bendigo.latrobe.edu.au/staff/mal/6809.htm

PULS PUL PULU ROL

ROR

35 5+ 2

Pull Registers from S Stack Pull Registers from U Stack

37 5+ 2

ROLA ROLB ROL RORA RORB ROR

49 59

2 2

1 1

46 56

2 2

1 Rotate Right thru 1 carry

09 6 2 69 6+ 2+ 79 7 3

06 6 2 66 6+ 2+ 76 7 3

3B 6/15 1

RTS

39

SBC

SBCA SBCB

82 2 2 92 4 2 A2 4+ 2+ B2 5 3 C2 2 2 D2 4 2 E2 4+ 2+ F2 5 3

SEX

1D 2 STA STB STD

ST

STS STU STX STY

SUB

SUBA SUBB SUBD

97 D7 DD 10 DF DF 9F 10 9F 80 2 2 90 C0 2 2 D0 83 4 3 93

4 4 5 6

2 2 2 3

5 2 5 2 6 3 4 2 4 2 6 2

A7 E7 ED 10 EF EF AF 10 AF A0 E0 A3

4+ 4+ 5+ 6+

2+ 2+ 2+ 3+

5+ 2+ 5+ 2+ 6+ 3+ 4+ 2+ 4+ 2+ 6+ 2+

B7 F7 FD 10 FF FF BF 10 BF B0 F0 B3

5 5 6 7

3 3 3 4

6 3 6 3 7 4 5 3 5 3 7 3 3F 19

SWI SWI

SWI3 SYNC TFR TST

:

R1,R2 TSTA TSTB TST

1

10 20 2 3F 11 20 2 3F >= 13 1 4

SWI2

1F 6 2 4D 2 5D 2 0D 6 2 6D 6+ 2+ 7D 7 3

+ + + 0 0 0

+++ +++ +++ + + + + + +

Return from ? ? ? ? ? Interrupt Return from 1 subroutine A=A-M-C 8 + ++ + B=B-M-C 8 + ++ + Sign extend B into 1 ++0 A M=A + +0 M=B + +0 M:M+1 = D ++0

RTI

5

Rotate left thru carry

1 1

M:M+1 = S

++0

M:M+1 = U M:M+1 = X

++0 ++0

M:M+1 = Y

++0

A=A-M 8 ++++ B=B-M 8 ++++ D = D - M:M+1 ++++ Software interrupt 1 Software interrupt 2 Software interrupt 3 Synchronize to Interrupt R2 = R1 Test A ++0 Test B ++0 Test M ++0

6809 Instruction Set

http://ironbark.bendigo.latrobe.edu.au/staff/mal/6809.htm

Legend: + Test and set if true, OP Operation Code(Hexadecimal) cleared otherwise = Transfer from - Not Affected ~ Number of MPU Cycles H Half carry (from bit 3) CC Condition Code Register # Number of Program Bytes N Negative (sign bit) : Concatenation + Arithmetic Plus Z Zero (Reset) || Logical or Arithmetic Minus V Overflow, 2's complement && Logical and * Multiply C Carry from ALU EOR Logical Exclusive or EA Effective Address:w ! Complement of M

Notes: 1. This column gives a base cycle and byte count. To obtain total count, add the values obtained from the INDEXED ADDRESSING MODE table, in Appendix F. 2. Rl and R2 may be any pair of 8 bit or any pair of 16 bit registers. The 8 bit registers are: A, B, CC, DP The 16 bit registers are: X, Y, U, S, D, PC 3. EA is the effective address. 4. The PSH and PUL instructions require 5 cycles plus 1 cycle for each byte pushed or pulled. 5. 5(6) means: 5 cycles if branch not taken, 6 cycles if taken (Branch instructions. 6. SWI sets I and F bits. SW12 and SW13 do not affect I and F. 7. Conditions Codes set as a direct result of the instruction. 8. Value of half carry flag is undefined. 9. Special Case Carry set if b7 is SET.

Instruction

Forms

Mode Relstive OP

Decription

BCC

BCC LBCC

24 3 / 10 5l6) 24

2 Branch C=O 4 Long Branch C=O

BCS

BCS LBCS

25 3 10 56) 25

BEQ

BEQ LBEQ

27 3 10 5(6) 27

2 Branch Z=O 4 Long Branch Z=O

BGE

BGE LBGE

2C 3 10 5(6) 2C

2 Branch2Zero 4 Long Branch2Zero

BGT

BGT LBGT

2E 3 10 5(6)

2 Branch > Zero 4 Long Branch>Zero

2 Branch C= 1 4 Long Branch C=l

5 3 2 1 O H N Z V C

6809 Instruction Set

http://ironbark.bendigo.latrobe.edu.au/staff/mal/6809.htm

2E BHI

BHI LBHI

22 3 10 5(6) 22

2 Branch rligher 4 Long Branch Higher

BHS

BHS

24 3

LBHS

10 516) 24

2 Branch Higher or Same 4 Long Branch Higher or Same

BLE

BLE LBLE

2F 3 10 5(6) 2F

BLO

BLO LBLO

25 3 10 56) 25

2 BranchsZero 4 Long BranchsZero 2 Branch lower 4 Long Branch Lower

Addressin T Mode Rela 5 3 2 1 ,0 Instruction Forms OP # Description H N Z V C BLS

BLS

23 3

LBLS

10 5(6) 23

BLT

BLT LBLT

2D 3 10 5i6) 2D

2 Branch
BMI

BMI LBMI

2B 3 10 5(6) 2B

2 Branch Minus 4 Long Branch Minus

BNE

BNE LBNE

26 3 10 5(6) 26

2 Branch ZtO 4 Long Branch Z0

BPL

BPL LBPL

2A " 10 5i6) 2A

Branch Plus 4 Long Branch Plus

BRA

BRA LBRA

20 16

3 5

2 Branch Alwavs 3 Long Branch Always

BRN

BRN LBRN

21 10 21

3 5

2 Branch Never 4 Long Branch Never

BSR

BSR LBSR

8D 17

7 9

2 Branch to Subroutine 3 Long Branch to Subroutine

BVC

BVC 28 3 2 Banch V=0 LBVC 10 5(61 4 Long Branch 28 V=0

BVS

BVS LBVS

29 3 10 5(6) 29

2 Branch Lower or Same 4 Long Branch Lower or Same

2 Branch V= 1 4 Long Branch V=l

Related Documents

6809ist
November 2019 2

More Documents from "Michael Evenson"

Swtpcappnote127
November 2019 0
6809diag
November 2019 2
6809fpm
November 2019 0
6809fadg
November 2019 4
6809ist
November 2019 2
Swtpcappnote124
November 2019 1