Tagged Questions

Yasm is a modular assembler intended as a full rewrite of the Netwide Assembler (NASM). It is licensed under a revision of the BSD licenses.

learn more… | top users | synonyms

0
votes
1answer
17 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
50 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* ...