User Tools

Site Tools


base:6510_instruction_timing
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


base:6510_instruction_timing [2015-04-17 04:30] (current) – created - external edit 127.0.0.1
Line 1: Line 1:
 +====== 6510 Instruction Timing ======
 +
 +The NMOS 6500 series processors always perform at least two reads for each instruction. In addition to the operation code (opcode), they fetch the next byte. This is quite efficient, as most instructions are two or three bytes long.
 +
 +The processors also use a sort of pipelining. If an instruction does not store data in memory on its last cycle, the processor can fetch the opcode of the next instruction while executing the last cycle. For instance, the instruction EOR #$FF truly takes three cycles. On the first cycle, the opcode $49 will be fetched. During the second cycle the processor decodes the opcode and fetches the parameter #$FF. On the third cycle, the processor will perform the operation and store the result to accumulator, but simultaneously it fetches the opcode for the next instruction. This is why the instruction effectively takes only two cycles.
 +
 +The following tables show what happens on the bus while executing different kinds of instructions.
 +
 +
 +===== Interrupts =====
 +
 +NMI and IRQ both take 7 cycles. Their timing diagram is much like BRK's (see below). IRQ will be executed only when the I flag is clear. IRQ and BRK both set the I flag, whereas the NMI does not affect its state.
 +
 +The processor will usually wait for the current instruction to complete before executing the interrupt sequence. To process the interrupt before the next instruction, the interrupt must occur before the last cycle of the current instruction.
 +
 +There is one exception to this rule: the BRK instruction. If a hardware interrupt (NMI or IRQ) occurs before the fourth (flags saving) cycle of BRK, the BRK instruction will be skipped, and the processor will jump to the hardware interrupt vector. This sequence will always take 7 cycles.
 +
 +You do not completely lose the BRK interrupt, the B flag will be set in the pushed status register if a BRK instruction gets interrupted. When BRK and IRQ occur at the same time, this does not cause any problems, as your program will consider it as a BRK, and the IRQ would occur again after the processor returned from your BRK routine, unless you cleared the interrupt source in your BRK handler. But the simultaneous occurrence of NMI and BRK is far more fatal. If you do not check the B flag in the NMI routine and subtract two from the return address when needed, the BRK instruction will be skipped.
 +
 +If the NMI and IRQ interrupts overlap each other (one interrupt occurs before fetching the interrupt vector for the other interrupt), the processor will most probably jump to the NMI vector in every case, and then jump to the IRQ vector after processing the first instruction of the NMI handler. This has not been measured yet, but the IRQ is very similar to BRK, and many sources state that the NMI has higher priority than IRQ. However, it might be that the processor takes the interrupt that comes later, i.e. you could lose an NMI interrupt if an IRQ occurred in four cycles after it.
 +
 +After finishing the interrupt sequence, the processor will start to execute the first instruction of the interrupt routine. This proves that the processor uses a sort of pipelining: it finishes the current instruction (or interrupt sequence) while reading the opcode of the next instruction.
 +
 +RESET does not push program counter on stack, and it lasts probably 6 cycles after deactivating the signal. Like NMI, RESET preserves all registers except PC.
 +
 +
 +===== Instructions accessing the stack =====
 +
 +<code>
 +     BRK
 +
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away),
 +                       increment PC
 +        3  $0100, W  push PCH on stack (with B flag set), decrement S
 +        4  $0100, W  push PCL on stack, decrement S
 +        5  $0100, W  push P on stack, decrement S
 +        6   $FFFE    fetch PCL
 +        7   $FFFF    fetch PCH
 +
 +
 +     RTI
 +
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away)
 +        3  $0100, R  increment S
 +        4  $0100, R  pull P from stack, increment S
 +        5  $0100, R  pull PCL from stack, increment S
 +        6  $0100, R  pull PCH from stack
 +
 +
 +     RTS
 +
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away)
 +        3  $0100, R  increment S
 +        4  $0100, R  pull PCL from stack, increment S
 +        5  $0100, R  pull PCH from stack
 +        6    PC      increment PC
 +
 +
 +     PHA, PHP
 +
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away)
 +        3  $0100, W  push register on stack, decrement S
 +
 +
 +     PLA, PLP
 +
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away)
 +        3  $0100, R  increment S
 +        4  $0100, R  pull register from stack
 +
 +
 +     JSR
 +
 +        #  address R/W description
 +       --- ------- --- -------------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch low address byte, increment PC
 +        3  $0100, R  internal operation (predecrement S?)
 +        4  $0100, W  push PCH on stack, decrement S
 +        5  $0100, W  push PCL on stack, decrement S
 +        6    PC      copy low address byte to PCL, fetch high address
 +                       byte to PCH
 +</code>
 +
 +===== Accumulator or implied addressing =====
 +
 +<code>
 +        #  address R/W description
 +       --- ------- --- -----------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      read next instruction byte (and throw it away)
 +
 +</code>
 +
 +===== Immediate addressing =====
 +
 +<code>
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch value, increment PC
 +</code>
 +
 +===== Absolute addressing =====
 +
 +<code>
 +     JMP
 +
 +        #  address R/W description
 +       --- ------- --- -------------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch low address byte, increment PC
 +        3    PC      copy low address byte to PCL, fetch high address
 +                       byte to PCH
 +
 +
 +     Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,
 +                        LAX, NOP)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch low byte of address, increment PC
 +        3    PC      fetch high byte of address, increment PC
 +        4  address  R  read from effective address
 +
 +
 +     Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,
 +                                     SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch low byte of address, increment PC
 +        3    PC      fetch high byte of address, increment PC
 +        4  address  R  read from effective address
 +        5  address  W  write the value back to effective address,
 +                       and do the operation on it
 +        6  address  W  write the new value to effective address
 +
 +
 +     Write instructions (STA, STX, STY, SAX)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch low byte of address, increment PC
 +        3    PC      fetch high byte of address, increment PC
 +        4  address  W  write register to effective address
 +</code>
 +
 +===== Zero page addressing =====
 +
 +<code>
 +
 +     Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,
 +                        LAX, NOP)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch address, increment PC
 +        3  address  R  read from effective address
 +
 +
 +     Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,
 +                                     SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch address, increment PC
 +        3  address  R  read from effective address
 +        4  address  W  write the value back to effective address,
 +                       and do the operation on it
 +        5  address  W  write the new value to effective address
 +
 +
 +     Write instructions (STA, STX, STY, SAX)
 +
 +        #  address R/W description
 +       --- ------- --- ------------------------------------------
 +        1    PC      fetch opcode, increment PC
 +        2    PC      fetch address, increment PC
 +        3  address  W  write register to effective address
 +</code>
 +
 +===== Zero page indexed addressing =====
 +
 +<code>
 +     Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,
 +                        LAX, NOP)
 +
 +        #   address  R/W description
 +       --- --------- --- ------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch address, increment PC
 +        3   address    read from address, add index register to it
 +        4  address+I* R  read from effective address
 +
 +       Notes: I denotes either index register (X or Y).
 +
 +              * The high byte of the effective address is always zero,
 +                i.e. page boundary crossings are not handled.
 +
 +
 +     Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,
 +                                     SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #   address  R/W description
 +       --- --------- --- ---------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch address, increment PC
 +        3   address    read from address, add index register X to it
 +        4  address+X* R  read from effective address
 +        5  address+X* W  write the value back to effective address,
 +                         and do the operation on it
 +        6  address+X* W  write the new value to effective address
 +
 +       Note: * The high byte of the effective address is always zero,
 +               i.e. page boundary crossings are not handled.
 +
 +
 +     Write instructions (STA, STX, STY, SAX)
 +
 +        #   address  R/W description
 +       --- --------- --- -------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch address, increment PC
 +        3   address    read from address, add index register to it
 +        4  address+I* W  write to effective address
 +
 +       Notes: I denotes either index register (X or Y).
 +
 +              * The high byte of the effective address is always zero,
 +                i.e. page boundary crossings are not handled.
 +</code>
 +
 +===== Absolute indexed addressing =====
 +
 +<code>
 +
 +     Read instructions (LDA, LDX, LDY, EOR, AND, ORA, ADC, SBC, CMP, BIT,
 +                        LAX, LAE, SHS, NOP)
 +
 +        #   address  R/W description
 +       --- --------- --- ------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch low byte of address, increment PC
 +        3     PC      R  fetch high byte of address,
 +                         add index register to low address byte,
 +                         increment PC
 +        4  address+I* R  read from effective address,
 +                         fix the high byte of effective address
 +        5+ address+I  R  re-read from effective address
 +
 +       Notes: I denotes either index register (X or Y).
 +
 +              * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100.
 +
 +              + This cycle will be executed only if the effective address
 +                was invalid during cycle #4, i.e. page boundary was crossed.
 +
 +
 +     Read-Modify-Write instructions (ASL, LSR, ROL, ROR, INC, DEC,
 +                                     SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #   address  R/W description
 +       --- --------- --- ------------------------------------------
 +        1    PC        fetch opcode, increment PC
 +        2    PC        fetch low byte of address, increment PC
 +        3    PC        fetch high byte of address,
 +                         add index register X to low address byte,
 +                         increment PC
 +        4  address+X* R  read from effective address,
 +                         fix the high byte of effective address
 +        5  address+X  R  re-read from effective address
 +        6  address+X  W  write the value back to effective address,
 +                         and do the operation on it
 +        7  address+X  W  write the new value to effective address
 +
 +       Notes: * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100.
 +
 +
 +     Write instructions (STA, STX, STY, SHA, SHX, SHY)
 +
 +        #   address  R/W description
 +       --- --------- --- ------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch low byte of address, increment PC
 +        3     PC      R  fetch high byte of address,
 +                         add index register to low address byte,
 +                         increment PC
 +        4  address+I* R  read from effective address,
 +                         fix the high byte of effective address
 +        5  address+I  W  write to effective address
 +
 +       Notes: I denotes either index register (X or Y).
 +
 +              * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100. Because
 +                the processor cannot undo a write to an invalid
 +                address, it always reads from the address first.
 +</code>
 +
 +===== Relative addressing =====
 +
 +(BCC, BCS, BNE, BEQ, BPL, BMI, BVC, BVS)
 +
 +<code>
 +
 +        #   address  R/W description
 +       --- --------- --- ---------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch operand, increment PC
 +        3     PC      R  Fetch opcode of next instruction,
 +                         If branch is taken, add operand to PCL.
 +                         Otherwise increment PC.
 +        4+    PC*      Fetch opcode of next instruction.
 +                         Fix PCH. If it did not change, increment PC.
 +        5!    PC      R  Fetch opcode of next instruction,
 +                         increment PC.
 +
 +       Notes: The opcode fetch of the next instruction is included to
 +              this diagram for illustration purposes. When determining
 +              real execution times, remember to subtract the last
 +              cycle.
 +
 +              * The high byte of Program Counter (PCH) may be invalid
 +                at this time, i.e. it may be smaller or bigger by $100.
 +
 +              + If branch is taken, this cycle will be executed.
 +
 +              ! If branch occurs to different page, this cycle will be
 +                executed.
 +</code>
 +
 +===== Indexed indirect addressing =====
 +
 +<code>
 +     Read instructions (LDA, ORA, EOR, AND, ADC, CMP, SBC, LAX)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  read from the address, add X to it
 +        4   pointer+X    fetch effective address low
 +        5  pointer+X+1  R  fetch effective address high
 +        6    address    R  read from effective address
 +
 +       Note: The effective address is always fetched from zero page,
 +             i.e. the zero page boundary crossing is not handled.
 +
 +     Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  read from the address, add X to it
 +        4   pointer+X    fetch effective address low
 +        5  pointer+X+1  R  fetch effective address high
 +        6    address    R  read from effective address
 +        7    address    W  write the value back to effective address,
 +                           and do the operation on it
 +        8    address    W  write the new value to effective address
 +
 +       Note: The effective address is always fetched from zero page,
 +             i.e. the zero page boundary crossing is not handled.
 +
 +     Write instructions (STA, SAX)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  read from the address, add X to it
 +        4   pointer+X    fetch effective address low
 +        5  pointer+X+1  R  fetch effective address high
 +        6    address    W  write to effective address
 +
 +       Note: The effective address is always fetched from zero page,
 +             i.e. the zero page boundary crossing is not handled.
 +</code>
 +
 +===== Indirect indexed addressing =====
 +
 +<code>
 +     Read instructions (LDA, EOR, AND, ORA, ADC, SBC, CMP)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  fetch effective address low
 +        4   pointer+1    fetch effective address high,
 +                           add Y to low byte of effective address
 +        5   address+Y*  R  read from effective address,
 +                           fix high byte of effective address
 +        6+  address+Y    read from effective address
 +
 +       Notes: The effective address is always fetched from zero page,
 +              i.e. the zero page boundary crossing is not handled.
 +
 +              * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100.
 +
 +              + This cycle will be executed only if the effective address
 +                was invalid during cycle #5, i.e. page boundary was crossed.
 +
 +
 +     Read-Modify-Write instructions (SLO, SRE, RLA, RRA, ISB, DCP)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  fetch effective address low
 +        4   pointer+1    fetch effective address high,
 +                           add Y to low byte of effective address
 +        5   address+Y*  R  read from effective address,
 +                           fix high byte of effective address
 +        6   address+Y    read from effective address
 +        7   address+Y    write the value back to effective address,
 +                           and do the operation on it
 +        8   address+Y    write the new value to effective address
 +
 +       Notes: The effective address is always fetched from zero page,
 +              i.e. the zero page boundary crossing is not handled.
 +
 +              * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100.
 +
 +
 +     Write instructions (STA, SHA)
 +
 +        #    address   R/W description
 +       --- ----------- --- ------------------------------------------
 +        1      PC        fetch opcode, increment PC
 +        2      PC        fetch pointer address, increment PC
 +        3    pointer    R  fetch effective address low
 +        4   pointer+1    fetch effective address high,
 +                           add Y to low byte of effective address
 +        5   address+Y*  R  read from effective address,
 +                           fix high byte of effective address
 +        6   address+Y    write to effective address
 +
 +       Notes: The effective address is always fetched from zero page,
 +              i.e. the zero page boundary crossing is not handled.
 +
 +              * The high byte of the effective address may be invalid
 +                at this time, i.e. it may be smaller by $100.
 +</code>
 +
 +===== Absolute indirect addressing =====
 + 
 +(JMP)
 +
 +<code>
 +        #   address  R/W description
 +       --- --------- --- ------------------------------------------
 +        1     PC      R  fetch opcode, increment PC
 +        2     PC      R  fetch pointer address low, increment PC
 +        3     PC      R  fetch pointer address high, increment PC
 +        4   pointer    fetch low address to latch
 +        5  pointer+1* R  fetch PCH, copy latch to PCL
 +
 +       Note: * The PCH will always be fetched from the same page
 +               than PCL, i.e. page boundary crossing is not handled.
 +</code>
  
base/6510_instruction_timing.txt · Last modified: 2015-04-17 04:30 by 127.0.0.1