views:

64

answers:

1

I want to try write a simple kernel in C# like cosmos, just for learning. Is it possible to generate x86 or x86-64 ASM from a Mono assembly? because mono --full-aot generates an executable...

After the generation of the ASM I need to compile it with NASM. Any ideas?

+1  A: 

You can use:

mono --aot=asmonly foo.exe

miguel.de.icaza