Tagged Questions
0
votes
1answer
30 views
Why doesn't YASM doesn't recognize the keyword “offset”?
I'm trying to compile Heaven's Gate:
yasm-1.2.0-win64.exe "Heaven's Gate.asm"
with the code below:
global main
section .text
main:
bits 32
db 9ah ;call 33:in64
dd ...
0
votes
0answers
60 views
Yasm preprocessor and macroses
I'm trying to create aliases for registers using Yasm macroses.
I have a bunch of macroses like:
#xdefine W0 ymm0
...
#xdefine W7 ymm7
Then I rotate W0-W7 macroses, so I can't be sure about W* ...