1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-01-19 03:20:59 +00:00
bddisasm/bdshemu_test/x86/basic/test_64_shld02.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
shld ax, bx, 31
int3