0
section .bss
   length equ 16
   number: resb length

This works only with 64 bits:

mov qword[number], 43271

This is represented of only 8 byte (64 bit). I need to store values in memory in 128 bit, but I've no idea how I can do that.

Thanks

Davide
  • 1,931
  • 2
  • 19
  • 39

1 Answers1

3

The standard approach is to use two store instructions, one for each half:

mov qword [number], 1234
mov qword [number+8], 4567
fuz
  • 88,405
  • 25
  • 200
  • 352