assembly - What is the correct way to prevent this YASM warning? -
i have line of code in yasm (32-bit code):
call 0xc0000000
which works correctly, gives me warning:
warning: value not fit in signed 32 bit field
there many ways work around warning, or suppress, ignore completely. know is:
what proper way avoid warning in first place?
looks replacing -0x40000000 fixes (because value signed).
assembly nasm yasm
No comments:
Post a Comment