Text only
|
Text with Images
The MASM Forum
64 bit assembler => 64 bit assembler. Conceptual Issues => Topic started by: xanatose on May 21, 2016, 07:34:57 PM
Title:
Masm 64 and 64 bit integer constants.
Post by:
xanatose
on
May 21, 2016, 07:34:57 PM
Using ml64.exe I am getting an error
Code
Select
Expand
A2084:constant value too large
When doing something like
Code
Select
Expand
test rax,0FF00000000h
Is there a way to use integer constants larger than 32 bit?
Title:
Re: Masm 64 and 64 bit integer constants.
Post by:
habran
on
May 21, 2016, 07:50:40 PM
Quote
mov rcx,0FF00000000h
test rax,rcx
Text only
|
Text with Images