How does a register based virtual machine work? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T10:03:55Zhttp://stackoverflow.com/feeds/question/688803http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/688803/how-does-a-register-based-virtual-machine-work4How does a register based virtual machine work?yinglcshttp://stackoverflow.com/users/603112009-03-27T07:17:23Z2009-03-27T07:41:33Z
<p>Hi,</p>
<p>How does a register based virtual machine work?
I am looking for introduction to how a register based virtual machine works.
Can someone please help?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/688803/how-does-a-register-based-virtual-machine-work/688856#6888566Answer by RBerteig for How does a register based virtual machine work?RBerteighttp://stackoverflow.com/users/682042009-03-27T07:41:33Z2009-03-27T07:41:33Z<p>One example of a register-based VM with available source code is <a href="http://www.lua.org/" rel="nofollow">Lua</a>. There are a number of resources that might help...</p>
<ul>
<li><a href="http://www.tecgraf.puc-rio.br/~lhf/ftp/doc/jucs05.pdf" rel="nofollow">The Implementation of Lua 5.0</a> From the authors of Lua itself.</li>
<li><a href="http://lulu.luaforge.net/" rel="nofollow">LuLu</a> The Lua VM implemented in Lua, companion to a blog in Japanese.</li>
<li><a href="http://luaforge.net/docman/view.php/83/98/ANoFrillsIntroToLua51VMInstructions.pdf" rel="nofollow">A No Frills Intro to Lua 5.1 VM Instructions</a> From a frequent contributor to the Lua community.</li>
</ul>