mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Add opcode extension forms of MOV8ri/MOV16ri/MOV32ri.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201463 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -699,3 +699,12 @@
|
||||
|
||||
# CHECK: movl %fs:0, %eax
|
||||
0x64 0xa1 0x00 0x00 0x00 0x00
|
||||
|
||||
# CHECK: movb $-1, %al
|
||||
0xc6 0xc0 0xff
|
||||
|
||||
# CHECK: movw $65535, %ax
|
||||
0x66 0xc7 0xc0 0xff 0xff
|
||||
|
||||
# CHECK: movl $4294967295, %eax
|
||||
0xc7 0xc0 0xff 0xff 0xff 0xff
|
||||
|
Reference in New Issue
Block a user