1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-01-22 04:50:55 +00:00
bddisasm/bdshemu_test/x86/basic/test_64_shrd02.asm

13 lines
214 B
NASM
Raw Normal View History

bits 64
global _start
section .text
_start:
; Undefined shift, count larger than operand size.
mov eax, 0x0000FFFF
mov ebx, 0x0000BDBD
shrd ax, bx, 31
int3