Register Indirect Addressing; Register Indirect Addressing With Post-Increment/Decrement Or Pre-Decrement - Epson S1C17 Series Manual

Cmos 16-bit single chip microcontroller
Hide thumbs Also See for S1C17 Series:
Table of Contents

Advertisement

5 INSTRUCTION SET

5.2.3 Register Indirect Addressing

In this mode, memory is accessed indirectly by specifying a general-purpose register or the stack pointer that holds
the address needed. This addressing mode is used only for load instructions that have [%rb] or [%sp] as the op-
erand. Actually, this general-purpose register is written as [%r0], [%r1], ... [%r7], or [%sp], with the register
name enclosed in brackets "[]."
The processor refers to the content of a specified register as the base address, and transfers data in the format that is
determined by the type of load instruction.
Examples: Memory → Register
ld.b
%r0,[%r1]
ld
%r0,[%r1]
ld.a
%r0,[%r1]
Register → Memory
ld.b
[%r1],%r0
ld
[%r1],%r0
ld.a
[%r1],%r0
In this example, the address indicated by r1 is the memory address from or to which data is to be trans-
ferred.
In 16-bit and 24-bit transfers, the base address that is set in a register must be on a 16-bit boundary (least significant
address bit = 0) or 32-bit boundary (2 low-order address bits = 0), respectively. Otherwise, an address-misaligned
interrupt will be generated.
5.2.4 Register Indirect Addressing with Post-increment/decrement or
Pre-decrement
As in register indirect addressing, the memory location to be accessed is specified indirectly by a general-purpose
register or the stack pointer. In this addressing mode, the base address held in a specified register is incremented/
decremented by an amount equal to the transferred data size before or after a data transfer. In this way, data can be
read from or written to continuous addresses in memory only by setting the start address once at the beginning.
* Increment/decrement size (without ext)
Byte transfer (ld.b, ld.ub): rb → rb + 1, rb → rb - 1
16-bit transfer (ld):
24-bit transfer (ld.a):
Register indirect addressing with post-increment
When a data transfer finishes, the base address is incremented.
This addressing mode is specified by enclosing the register name in brackets "[]," which is then suffixed by "+."
The register name is actually written as [%r0]+, [%r1]+, ... [%r7]+, or [%sp]+.
Register indirect addressing with post-decrement
When a data transfer finishes, the base address is decremented.
This addressing mode is specified by enclosing the register name in brackets "[]," which is then suffixed by "-."
The register name is actually written as [%r0]-, [%r1]-, ... [%r7]-, or [%sp]-.
Register indirect addressing with pre-decrement
The base address is decremented before a data transfer starts.
This addressing mode is specified by enclosing the register name in brackets "[]," which is prefixed by "-."
The register name is actually written as -[%r0], -[%r1], ... -[%r7], or -[%sp].
5-6
; Load 8-bit data
; Load 16-bit data
; Load 24-bit data
; Store 8-bit data
; Store 16-bit data
; Store 24-bit data
rb → rb + 2, rb → rb - 2
rb → rb + 4, rb → rb - 4
Seiko Epson Corporation
S1C17 CORE MANUAL
(REV. 1.2)

Advertisement

Table of Contents
loading

Table of Contents