mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
add ADDS and ADCS
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30830 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
48bc9fbf19
commit
ecdb9f93c4
@ -117,6 +117,14 @@ def ADD : InstARM<(ops IntRegs:$dst, IntRegs:$a, op_addr_mode1:$b),
|
||||
"add $dst, $a, $b",
|
||||
[(set IntRegs:$dst, (add IntRegs:$a, addr_mode1:$b))]>;
|
||||
|
||||
def ADCS : InstARM<(ops IntRegs:$dst, IntRegs:$a, op_addr_mode1:$b),
|
||||
"adcs $dst, $a, $b",
|
||||
[(set IntRegs:$dst, (adde IntRegs:$a, addr_mode1:$b))]>;
|
||||
|
||||
def ADDS : InstARM<(ops IntRegs:$dst, IntRegs:$a, op_addr_mode1:$b),
|
||||
"adds $dst, $a, $b",
|
||||
[(set IntRegs:$dst, (addc IntRegs:$a, addr_mode1:$b))]>;
|
||||
|
||||
// "LEA" forms of add
|
||||
def lea_addri : InstARM<(ops IntRegs:$dst, memri:$addr),
|
||||
"add $dst, ${addr:arith}",
|
||||
|
Loading…
x
Reference in New Issue
Block a user