Intel® C++ Compiler
Community support and assistance for creating C++ code that runs on platforms based on Intel® processors.
7956 Discussions

Is there a way to obtain NASM code from a C-like language?

Andrew_F_
Beginner
357 Views

I need to implement an optimized Algorithm in NASM, unfortunately is a bit difficult for me since I'm new to its syntax. So I'm looking for a way to translate a C program in NASM.

Any tool or suggestion to help me?

 

Thanks

0 Kudos
3 Replies
Bernard
Valued Contributor I
357 Views

The only method I suppose is to look at C program disassembly and try to translate it manually to NASM syntax.

0 Kudos
KitturGanesh
Employee
357 Views

Yes, there's no other way know of other than deciphering the c assembly and convert to nasm accordingly....

Regards, Kittur

0 Kudos
Bernard
Valued Contributor I
357 Views

For simple programs or  functions it is quite beneficial for understanding the assembly implementation.

0 Kudos
Reply