16 lines
244 B
ArmAsm
16 lines
244 B
ArmAsm
# Check 64bit PTWRITE instructions
|
|
|
|
.text
|
|
_start:
|
|
ptwrite %ecx
|
|
ptwritel %ecx
|
|
ptwrite %rcx
|
|
ptwriteq %rcx
|
|
ptwritel (%rcx)
|
|
ptwriteq (%rcx)
|
|
|
|
.intel_syntax noprefix
|
|
ptwrite ecx
|
|
ptwrite rcx
|
|
ptwrite DWORD PTR [rcx]
|
|
ptwrite QWORD PTR [rcx]
|