What are the sizes of tword, oword and yword operands?

Looking at the nasm source, it looks like: ‘oword”https://stackoverflow.com/”DO’ is 8 times as big as “word” (O for “octoword”), synonymous with dqword (“double-quad”); that would be 128 bits, corresponding to the size of an SSE vector register. ‘tword”https://stackoverflow.com/”DT’ is 80 bits (T for “ten bytes”), the full size of an Intel x87 floating point register. … Read more

NASM issue on OSX 64-bit [duplicate]

If you’re using nasm 2.11.08, there is a issue documented here to do with relative addressing combined with multiple entries in the data section. You can do one (or both) of two things to be certain. First, you can have a look at the generated assembler code to investigate what it’s actually churning out. That’s … Read more