News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Masm 64 and 64 bit integer constants.

Started by xanatose, May 21, 2016, 07:34:57 PM

Previous topic - Next topic

xanatose

Using ml64.exe I am getting an error

A2084:constant value too large


When doing something like

test rax,0FF00000000h


Is there a way to use integer constants larger than 32 bit?

habran

Quote
  mov rcx,0FF00000000h
  test rax,rcx
Cod-Father