INSTRUCTION SET
S3C4510B
ASSEMBLER SYNTAX
Items in {} are optional. Items in < > must be present.
B{L}{cond} <expression>
{L}
Used to request the branch with link form of the instruction. If absent, R14 will not be
affected by the instruction.
{cond}
A two-character mnemonic as shown in Table 3-2. If absent then AL (Always) will be
used.
<expression>
The destination. The assembler calculates the offset.
Examples
here
BAL
B
CMP
here
there
R1,#0
; Assembles to 0xEAFFFFFE (note effect of PC offset).
; Always condition used as default.
; Compare R1 with zero and branch to fred
; if R1 was zero, otherwise continue.
; Continue to next instruction.
; Call subroutine at computed address.
; Add 1 to register 1, setting CPSR flags
; on the result then call subroutine if
; the C flag is clear, which will be the
; case unless R1 held 0xFFFFFFFF.
BEQ
BL
ADDS
fred
sub+ROM
R1,#1
BLCC
sub
3-8