ASM: MASM, NASM, FASM?

前端 未结 2 832
忘掉有多难
忘掉有多难 2021-01-30 11:22

I have done ARM assembly programming and I would like to learn the Intel Assembler. I keep hearing all these different F/M/N/ASMs mentioned- but I am unsure how they related to

2条回答
  •  走了就别回头了
    2021-01-30 11:41

    Just to tell about it, RosAsm is a windows only 32 bits assembler that has several interresting points like

    • an integrated IDE that is self-compiled with available source code
    • a NASM inspired syntax
    • a powerful macro system for high level language design
    • the particularity to store the source code inside the produced .exe and .dll (in a PE section).

    Concerning the 64 bits support, RosAsm has none but one of its contributors is currently working on a 64 bits rewrite (BUAsm, the Bottom-Up assembler)

提交回复
热议问题