1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2025-01-18 19:10:57 +00:00
bddisasm/bdshemu_test/x86/basic/test_64_shl01.asm

87 lines
998 B
NASM
Raw Normal View History

bits 64
global _start
section .text
_start:
nop
clc
mov al, 0xAA
shl al, 0
nop
clc
mov al, 0xAA
shl al, 1
nop
clc
mov al, 0xAA
shl al, 7
nop
clc
mov al, 0xAA
shl al, 8
nop
clc
mov al, 0xAA
shl al, 30
nop
clc
mov al, 0x77
shl al, 0
nop
clc
mov al, 0x77
shl al, 1
nop
clc
mov al, 0x77
shl al, 7
nop
clc
mov al, 0x77
shl al, 8
nop
clc
mov al, 0x77
shl al, 30
nop
clc
mov al, 0xFF
shl al, 0
nop
clc
mov al, 0xFF
shl al, 1
nop
clc
mov al, 0xFF
shl al, 7
nop
clc
mov al, 0xFF
shl al, 8
nop
clc
mov al, 0xFF
shl al, 30
int3