views:

53

answers:

1

How do you implement a stackless language on top of the CLR? What are some issues with implementing a stackless language on top of a stackful virtual machine, and are there any OSS projects out there that have done this kind of work on the CLR?

+1  A: 

Check out my tutorial: http://www.icemanind.com

It teaches you how to write a vitual machine in C# step-by-step, including an assembler!

icemanind