I am writing a compiler, and I went through all the steps (tokenization, parsing, syntax tree structures, etc.) that they show you in all compiler books. (Please do not comment on the link to "Resources for writing a compiler"!).
I decided to use NASM along with alink as my backend.
Now my problem is: I just can't find good resources to learn about NASM and builds in general.
Wikibook (german) on the x86 build is horrible . They don’t even explain the code that they write there, at present I can’t even get simple things, for example, adding 1 to 2 and outputting the result.
- Where can I find out the NASM x86 build?
source
share