Terraspace / UASM

UASM - Macro Assembler
http://www.terraspace.co.uk/uasm.html
Other
220 stars 49 forks source link

pextrw r32,mmxreg,imm8 is not recognized #46

Closed sergey-sj closed 7 years ago

sergey-sj commented 7 years ago

.686 .XMM .MODEL FLAT .CODE pinsrw mm0, eax, 0 ; 0F C4 C0 00; ok pextrw eax, mm0, 0 ; Error A2049: Invalid instruction operands
; - should be 0F C5 C0 00

pextrw eax, xmm0, 0 ; 66 0F C5 C0 00; ok pinsrw xmm0, eax, 0 ; 66 0F C4 C0 00; ok

john-terraspace commented 7 years ago

This one is fixed and will be updated shortly.

From: sergey-sj [mailto:notifications@github.com] Sent: 24 January 2017 12:05 PM To: Terraspace/HJWasm HJWasm@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [Terraspace/HJWasm] pextrw r32,mmxreg,imm8 is not recognized (#46)

.686 .XMM .MODEL FLAT .CODE pinsrw mm0, eax, 0 ; 0F C4 C0 00; ok pextrw eax, mm0, 0 ; Error A2049: Invalid instruction operands ; - should be 0F C5 C0 00

pextrw eax, xmm0, 0 ; 66 0F C5 C0 00; ok pinsrw xmm0, eax, 0 ; 66 0F C4 C0 00; ok

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Terraspace/HJWasm/issues/46 , or mute the thread https://github.com/notifications/unsubscribe-auth/AQGQVNIOT18NwFWXjOdxeIbNlq7OCMXCks5rVej-gaJpZM4LsLsb .

john-terraspace commented 7 years ago

Fixed, updated 2.19 package is available.