Registriert seit: 23. Nov 2022
Ort: Wolfratshausen
40 Beiträge
Delphi 12 Athens
|
Assembler Zugriff auf 128 bit variable
26. Nov 2022, 16:20
Hallo,
weiß jemand wie man das xxm0 Register mit einer 128bit Variable lädt?
Für 64 Bit:
Delphi-Quellcode:
var
Bytes8: Int64; // Bzw. Double
asm
movq xxm0,Bytes8
Für 128 Bit?
Delphi-Quellcode:
var
Bytes16: ??? // Welche Deklaration?
asm
movaps xmm0,Bytes16
Vielen Dank
|