How does a register based virtual machine work? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T10:03:55Z http://stackoverflow.com/feeds/question/688803 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/688803/how-does-a-register-based-virtual-machine-work 4 How does a register based virtual machine work? yinglcs http://stackoverflow.com/users/60311 2009-03-27T07:17:23Z 2009-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#688856 6 Answer by RBerteig for How does a register based virtual machine work? RBerteig http://stackoverflow.com/users/68204 2009-03-27T07:41:33Z 2009-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>