├── .gitignore ├── LICENSE ├── README.md ├── linux ├── part01 │ ├── bin │ │ └── TODO.txt │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ └── luastate.h │ ├── compiler │ │ └── TODO.txt │ ├── main.c │ ├── makefile │ ├── test │ │ ├── p1_test.c │ │ └── p1_test.h │ └── vm │ │ ├── luado.c │ │ └── luado.h ├── part02 │ ├── bin │ │ └── todo.txt │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ └── luastate.h │ ├── compiler │ │ └── TODO.txt │ ├── main.c │ ├── makefile │ ├── tags │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ └── p2_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luagc.c │ │ └── luagc.h ├── part03 │ ├── bin │ │ └── todo.txt │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ └── TODO.txt │ ├── main.c │ ├── makefile │ ├── tags │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ └── p3_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luavm.c │ │ └── luavm.h ├── part04 │ ├── bin │ │ └── todo.txt │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ └── TODO.txt │ ├── main.c │ ├── makefile │ ├── tags │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ └── p4_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luavm.c │ │ └── luavm.h ├── part05 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ └── token_test.lua │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ └── p5_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h ├── part06 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ ├── part06_test.lua │ │ └── part07_test.lua │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ ├── p5_test.h │ │ ├── p6_test.c │ │ ├── p6_test.h │ │ ├── p7_test.c │ │ └── p7_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h ├── part07 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ ├── part06_test.lua │ │ └── part07_test.lua │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ ├── p5_test.h │ │ ├── p6_test.c │ │ ├── p6_test.h │ │ ├── p7_test.c │ │ └── p7_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h ├── part08 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ └── luatable.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ ├── part06_test.lua │ │ ├── part07_test.lua │ │ └── part08_test.lua │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ ├── p5_test.h │ │ ├── p6_test.c │ │ ├── p6_test.h │ │ ├── p7_test.c │ │ ├── p7_test.h │ │ ├── p8_test.c │ │ └── p8_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h ├── part09 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luadebug.c │ │ ├── luadebug.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ ├── luatable.h │ │ ├── luatm.c │ │ └── luatm.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── debug_test.lua │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ ├── part06_test.lua │ │ ├── part07_test.lua │ │ ├── part08_test.lua │ │ └── part09_test.lua │ ├── test │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ ├── p5_test.h │ │ ├── p6_test.c │ │ ├── p6_test.h │ │ ├── p7_test.c │ │ ├── p7_test.h │ │ ├── p8_test.c │ │ ├── p8_test.h │ │ ├── p9_test.c │ │ └── p9_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h ├── part10 │ ├── clib │ │ ├── luaaux.c │ │ └── luaaux.h │ ├── common │ │ ├── lua.h │ │ ├── luabase.c │ │ ├── luabase.h │ │ ├── luadebug.c │ │ ├── luadebug.h │ │ ├── luainit.c │ │ ├── luamem.c │ │ ├── luamem.h │ │ ├── luaobject.c │ │ ├── luaobject.h │ │ ├── luastate.c │ │ ├── luastate.h │ │ ├── luastring.c │ │ ├── luastring.h │ │ ├── luatable.c │ │ ├── luatable.h │ │ ├── luatm.c │ │ └── luatm.h │ ├── compiler │ │ ├── luacode.c │ │ ├── luacode.h │ │ ├── lualexer.c │ │ ├── lualexer.h │ │ ├── luaparser.c │ │ ├── luaparser.h │ │ ├── luazio.c │ │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ │ ├── debug_test.lua │ │ ├── parser_test01.lua │ │ ├── part05_test.lua │ │ ├── part06_test.lua │ │ ├── part07_test.lua │ │ ├── part08_test.lua │ │ └── part09_test.lua │ ├── test │ │ ├── p10_test.c │ │ ├── p10_test.h │ │ ├── p1_test.c │ │ ├── p1_test.h │ │ ├── p2_test.c │ │ ├── p2_test.h │ │ ├── p3_test.c │ │ ├── p3_test.h │ │ ├── p4_test.c │ │ ├── p4_test.h │ │ ├── p5_test.c │ │ ├── p5_test.h │ │ ├── p6_test.c │ │ ├── p6_test.h │ │ ├── p7_test.c │ │ ├── p7_test.h │ │ ├── p8_test.c │ │ ├── p8_test.h │ │ ├── p9_test.c │ │ └── p9_test.h │ └── vm │ │ ├── luado.c │ │ ├── luado.h │ │ ├── luafunc.c │ │ ├── luafunc.h │ │ ├── luagc.c │ │ ├── luagc.h │ │ ├── luaopcodes.c │ │ ├── luaopcodes.h │ │ ├── luavm.c │ │ └── luavm.h └── part11 │ ├── clib │ ├── luaaux.c │ └── luaaux.h │ ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luadebug.c │ ├── luadebug.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ ├── luatable.h │ ├── luatm.c │ └── luatm.h │ ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h │ ├── main.c │ ├── makefile │ ├── scripts │ ├── debug_test.lua │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ ├── part07_test.lua │ ├── part08_test.lua │ ├── part09_test.lua │ └── part11_test.lua │ ├── test │ ├── p10_test.c │ ├── p10_test.h │ ├── p11_test.c │ ├── p11_test.h │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ ├── p7_test.h │ ├── p8_test.c │ ├── p8_test.h │ ├── p9_test.c │ └── p9_test.h │ └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── tools └── protodump │ ├── build.sh │ ├── build_proto.lua │ ├── dump.sh │ ├── lua-src │ ├── Makefile │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lbitlib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltm.c │ ├── ltm.h │ ├── lua.c │ ├── lua.h │ ├── lua.hpp │ ├── luac.c │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h │ └── lua.dump └── windows └── project ├── .vs └── project │ └── v15 │ ├── .suo │ ├── Browse.VC.db │ ├── Solution.VC.db │ └── ipch │ ├── 1422795aedc8c211.ipch │ └── AutoPCH │ ├── 1881952678b4ebd6 │ └── LUAAUX.ipch │ ├── 32240ecf518b2877 │ └── MAIN.ipch │ ├── 3af7cf31f0502ff2 │ └── LUAZIO.ipch │ ├── 62bbfa2cdb3e0093 │ └── LUALEXER.ipch │ ├── 8a6601d8787a1e7a │ └── LUADO.ipch │ ├── 97b533d217a5320d │ └── P4_TEST.ipch │ ├── 98867274aeec1a86 │ └── LUASTRING.ipch │ ├── abd77c45b63da055 │ └── LUATABLE.ipch │ ├── bf24c87822a356aa │ └── P3_TEST.ipch │ ├── d9291880e91307dc │ └── LUASTATE.ipch │ └── e623622461add78b │ └── P2_TEST.ipch ├── part01 ├── bin │ └── TODO.txt ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ └── luastate.h ├── compiler │ └── TODO.txt ├── main.c ├── makefile ├── part01.vcxproj ├── part01.vcxproj.filters ├── part01.vcxproj.user ├── test │ ├── p1_test.c │ └── p1_test.h └── vm │ ├── luado.c │ └── luado.h ├── part02 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ └── luastate.h ├── compiler │ └── TODO.txt ├── main.c ├── makefile ├── part02.vcxproj ├── part02.vcxproj.filters ├── part02.vcxproj.user ├── tags ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ └── p2_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luagc.c │ └── luagc.h ├── part03 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ └── TODO.txt ├── main.c ├── makefile ├── part03.vcxproj ├── part03.vcxproj.filters ├── part03.vcxproj.user ├── tags ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ └── p3_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luagc.c │ ├── luagc.h │ ├── luavm.c │ └── luavm.h ├── part04 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ └── TODO.txt ├── main.c ├── makefile ├── part04.vcxproj ├── part04.vcxproj.filters ├── part04.vcxproj.user ├── tags ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ └── p4_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luagc.c │ ├── luagc.h │ ├── luavm.c │ └── luavm.h ├── part05 ├── .tags ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part05.vcxproj ├── part05.vcxproj.filters ├── part05.vcxproj.user ├── scripts │ ├── parser_test01.lua │ ├── part05_test.lua │ └── token_test.lua ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ └── p5_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part06 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part06.vcxproj ├── part06.vcxproj.filters ├── part06.vcxproj.user ├── scripts │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ └── part07_test.lua ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ └── p7_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part07 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part07.vcxproj ├── part07.vcxproj.filters ├── part07.vcxproj.user ├── scripts │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ └── part07_test.lua ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ └── p7_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part08 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ └── luatable.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part08.vcxproj ├── part08.vcxproj.filters ├── part08.vcxproj.user ├── scripts │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ ├── part07_test.lua │ └── part08_test.lua ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ ├── p7_test.h │ ├── p8_test.c │ └── p8_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part09 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luadebug.c │ ├── luadebug.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ ├── luatable.h │ ├── luatm.c │ └── luatm.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part09.vcxproj ├── part09.vcxproj.filters ├── part09.vcxproj.user ├── scripts │ ├── debug_test.lua │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ ├── part07_test.lua │ ├── part08_test.lua │ └── part09_test.lua ├── test │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ ├── p7_test.h │ ├── p8_test.c │ ├── p8_test.h │ ├── p9_test.c │ └── p9_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part10 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luadebug.c │ ├── luadebug.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ ├── luatable.h │ ├── luatm.c │ └── luatm.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part10.vcxproj ├── part10.vcxproj.filters ├── part10.vcxproj.user ├── scripts │ ├── debug_test.lua │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ ├── part07_test.lua │ ├── part08_test.lua │ └── part09_test.lua ├── test │ ├── p10_test.c │ ├── p10_test.h │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ ├── p7_test.h │ ├── p8_test.c │ ├── p8_test.h │ ├── p9_test.c │ └── p9_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── part11 ├── clib │ ├── luaaux.c │ └── luaaux.h ├── common │ ├── lua.h │ ├── luabase.c │ ├── luabase.h │ ├── luadebug.c │ ├── luadebug.h │ ├── luainit.c │ ├── luamem.c │ ├── luamem.h │ ├── luaobject.c │ ├── luaobject.h │ ├── luastate.c │ ├── luastate.h │ ├── luastring.c │ ├── luastring.h │ ├── luatable.c │ ├── luatable.h │ ├── luatm.c │ └── luatm.h ├── compiler │ ├── luacode.c │ ├── luacode.h │ ├── lualexer.c │ ├── lualexer.h │ ├── luaparser.c │ ├── luaparser.h │ ├── luazio.c │ └── luazio.h ├── main.c ├── makefile ├── part11.vcxproj ├── part11.vcxproj.filters ├── part11.vcxproj.user ├── scripts │ ├── debug_test.lua │ ├── parser_test01.lua │ ├── part05_test.lua │ ├── part06_test.lua │ ├── part07_test.lua │ ├── part08_test.lua │ ├── part09_test.lua │ └── part11_test.lua ├── test │ ├── p10_test.c │ ├── p10_test.h │ ├── p11_test.c │ ├── p11_test.h │ ├── p1_test.c │ ├── p1_test.h │ ├── p2_test.c │ ├── p2_test.h │ ├── p3_test.c │ ├── p3_test.h │ ├── p4_test.c │ ├── p4_test.h │ ├── p5_test.c │ ├── p5_test.h │ ├── p6_test.c │ ├── p6_test.h │ ├── p7_test.c │ ├── p7_test.h │ ├── p8_test.c │ ├── p8_test.h │ ├── p9_test.c │ └── p9_test.h └── vm │ ├── luado.c │ ├── luado.h │ ├── luafunc.c │ ├── luafunc.h │ ├── luagc.c │ ├── luagc.h │ ├── luaopcodes.c │ ├── luaopcodes.h │ ├── luavm.c │ └── luavm.h ├── project.sln └── project ├── project.vcxproj ├── project.vcxproj.filters └── project.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /linux/part01/bin/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part01/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part01/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part01/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/lua.h -------------------------------------------------------------------------------- /linux/part01/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luamem.c -------------------------------------------------------------------------------- /linux/part01/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luamem.h -------------------------------------------------------------------------------- /linux/part01/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luaobject.c -------------------------------------------------------------------------------- /linux/part01/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luaobject.h -------------------------------------------------------------------------------- /linux/part01/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luastate.c -------------------------------------------------------------------------------- /linux/part01/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/common/luastate.h -------------------------------------------------------------------------------- /linux/part01/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part01/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/main.c -------------------------------------------------------------------------------- /linux/part01/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/makefile -------------------------------------------------------------------------------- /linux/part01/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/test/p1_test.c -------------------------------------------------------------------------------- /linux/part01/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/test/p1_test.h -------------------------------------------------------------------------------- /linux/part01/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/vm/luado.c -------------------------------------------------------------------------------- /linux/part01/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part01/vm/luado.h -------------------------------------------------------------------------------- /linux/part02/bin/todo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part02/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part02/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part02/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/lua.h -------------------------------------------------------------------------------- /linux/part02/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luamem.c -------------------------------------------------------------------------------- /linux/part02/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luamem.h -------------------------------------------------------------------------------- /linux/part02/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luaobject.c -------------------------------------------------------------------------------- /linux/part02/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luaobject.h -------------------------------------------------------------------------------- /linux/part02/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luastate.c -------------------------------------------------------------------------------- /linux/part02/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/common/luastate.h -------------------------------------------------------------------------------- /linux/part02/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part02/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/main.c -------------------------------------------------------------------------------- /linux/part02/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/makefile -------------------------------------------------------------------------------- /linux/part02/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/tags -------------------------------------------------------------------------------- /linux/part02/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/test/p1_test.c -------------------------------------------------------------------------------- /linux/part02/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/test/p1_test.h -------------------------------------------------------------------------------- /linux/part02/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/test/p2_test.c -------------------------------------------------------------------------------- /linux/part02/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/test/p2_test.h -------------------------------------------------------------------------------- /linux/part02/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/vm/luado.c -------------------------------------------------------------------------------- /linux/part02/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/vm/luado.h -------------------------------------------------------------------------------- /linux/part02/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/vm/luagc.c -------------------------------------------------------------------------------- /linux/part02/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part02/vm/luagc.h -------------------------------------------------------------------------------- /linux/part03/bin/todo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part03/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part03/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part03/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/lua.h -------------------------------------------------------------------------------- /linux/part03/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luamem.c -------------------------------------------------------------------------------- /linux/part03/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luamem.h -------------------------------------------------------------------------------- /linux/part03/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luaobject.c -------------------------------------------------------------------------------- /linux/part03/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luaobject.h -------------------------------------------------------------------------------- /linux/part03/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luastate.c -------------------------------------------------------------------------------- /linux/part03/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luastate.h -------------------------------------------------------------------------------- /linux/part03/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luastring.c -------------------------------------------------------------------------------- /linux/part03/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luastring.h -------------------------------------------------------------------------------- /linux/part03/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luatable.c -------------------------------------------------------------------------------- /linux/part03/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/common/luatable.h -------------------------------------------------------------------------------- /linux/part03/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part03/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/main.c -------------------------------------------------------------------------------- /linux/part03/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/makefile -------------------------------------------------------------------------------- /linux/part03/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/tags -------------------------------------------------------------------------------- /linux/part03/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p1_test.c -------------------------------------------------------------------------------- /linux/part03/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p1_test.h -------------------------------------------------------------------------------- /linux/part03/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p2_test.c -------------------------------------------------------------------------------- /linux/part03/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p2_test.h -------------------------------------------------------------------------------- /linux/part03/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p3_test.c -------------------------------------------------------------------------------- /linux/part03/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/test/p3_test.h -------------------------------------------------------------------------------- /linux/part03/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/vm/luado.c -------------------------------------------------------------------------------- /linux/part03/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/vm/luado.h -------------------------------------------------------------------------------- /linux/part03/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/vm/luagc.c -------------------------------------------------------------------------------- /linux/part03/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part03/vm/luagc.h -------------------------------------------------------------------------------- /linux/part03/vm/luavm.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part03/vm/luavm.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part04/bin/todo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part04/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part04/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part04/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/lua.h -------------------------------------------------------------------------------- /linux/part04/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luamem.c -------------------------------------------------------------------------------- /linux/part04/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luamem.h -------------------------------------------------------------------------------- /linux/part04/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luaobject.c -------------------------------------------------------------------------------- /linux/part04/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luaobject.h -------------------------------------------------------------------------------- /linux/part04/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luastate.c -------------------------------------------------------------------------------- /linux/part04/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luastate.h -------------------------------------------------------------------------------- /linux/part04/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luastring.c -------------------------------------------------------------------------------- /linux/part04/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luastring.h -------------------------------------------------------------------------------- /linux/part04/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luatable.c -------------------------------------------------------------------------------- /linux/part04/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/common/luatable.h -------------------------------------------------------------------------------- /linux/part04/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/part04/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/main.c -------------------------------------------------------------------------------- /linux/part04/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/makefile -------------------------------------------------------------------------------- /linux/part04/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/tags -------------------------------------------------------------------------------- /linux/part04/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p1_test.c -------------------------------------------------------------------------------- /linux/part04/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p1_test.h -------------------------------------------------------------------------------- /linux/part04/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p2_test.c -------------------------------------------------------------------------------- /linux/part04/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p2_test.h -------------------------------------------------------------------------------- /linux/part04/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p3_test.c -------------------------------------------------------------------------------- /linux/part04/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p3_test.h -------------------------------------------------------------------------------- /linux/part04/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p4_test.c -------------------------------------------------------------------------------- /linux/part04/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/test/p4_test.h -------------------------------------------------------------------------------- /linux/part04/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luado.c -------------------------------------------------------------------------------- /linux/part04/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luado.h -------------------------------------------------------------------------------- /linux/part04/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luagc.c -------------------------------------------------------------------------------- /linux/part04/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luagc.h -------------------------------------------------------------------------------- /linux/part04/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luavm.c -------------------------------------------------------------------------------- /linux/part04/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part04/vm/luavm.h -------------------------------------------------------------------------------- /linux/part05/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part05/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part05/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/lua.h -------------------------------------------------------------------------------- /linux/part05/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luabase.c -------------------------------------------------------------------------------- /linux/part05/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luabase.h -------------------------------------------------------------------------------- /linux/part05/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luainit.c -------------------------------------------------------------------------------- /linux/part05/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luamem.c -------------------------------------------------------------------------------- /linux/part05/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luamem.h -------------------------------------------------------------------------------- /linux/part05/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luaobject.c -------------------------------------------------------------------------------- /linux/part05/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luaobject.h -------------------------------------------------------------------------------- /linux/part05/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luastate.c -------------------------------------------------------------------------------- /linux/part05/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luastate.h -------------------------------------------------------------------------------- /linux/part05/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luastring.c -------------------------------------------------------------------------------- /linux/part05/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luastring.h -------------------------------------------------------------------------------- /linux/part05/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luatable.c -------------------------------------------------------------------------------- /linux/part05/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/common/luatable.h -------------------------------------------------------------------------------- /linux/part05/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part05/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part05/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part05/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part05/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part05/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part05/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part05/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part05/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/main.c -------------------------------------------------------------------------------- /linux/part05/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/makefile -------------------------------------------------------------------------------- /linux/part05/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part05/scripts/token_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/scripts/token_test.lua -------------------------------------------------------------------------------- /linux/part05/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p1_test.c -------------------------------------------------------------------------------- /linux/part05/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p1_test.h -------------------------------------------------------------------------------- /linux/part05/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p2_test.c -------------------------------------------------------------------------------- /linux/part05/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p2_test.h -------------------------------------------------------------------------------- /linux/part05/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p3_test.c -------------------------------------------------------------------------------- /linux/part05/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p3_test.h -------------------------------------------------------------------------------- /linux/part05/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p4_test.c -------------------------------------------------------------------------------- /linux/part05/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p4_test.h -------------------------------------------------------------------------------- /linux/part05/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p5_test.c -------------------------------------------------------------------------------- /linux/part05/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/test/p5_test.h -------------------------------------------------------------------------------- /linux/part05/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luado.c -------------------------------------------------------------------------------- /linux/part05/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luado.h -------------------------------------------------------------------------------- /linux/part05/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part05/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part05/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luagc.c -------------------------------------------------------------------------------- /linux/part05/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luagc.h -------------------------------------------------------------------------------- /linux/part05/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part05/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part05/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luavm.c -------------------------------------------------------------------------------- /linux/part05/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part05/vm/luavm.h -------------------------------------------------------------------------------- /linux/part06/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part06/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part06/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/lua.h -------------------------------------------------------------------------------- /linux/part06/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luabase.c -------------------------------------------------------------------------------- /linux/part06/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luabase.h -------------------------------------------------------------------------------- /linux/part06/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luainit.c -------------------------------------------------------------------------------- /linux/part06/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luamem.c -------------------------------------------------------------------------------- /linux/part06/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luamem.h -------------------------------------------------------------------------------- /linux/part06/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luaobject.c -------------------------------------------------------------------------------- /linux/part06/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luaobject.h -------------------------------------------------------------------------------- /linux/part06/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luastate.c -------------------------------------------------------------------------------- /linux/part06/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luastate.h -------------------------------------------------------------------------------- /linux/part06/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luastring.c -------------------------------------------------------------------------------- /linux/part06/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luastring.h -------------------------------------------------------------------------------- /linux/part06/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luatable.c -------------------------------------------------------------------------------- /linux/part06/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/common/luatable.h -------------------------------------------------------------------------------- /linux/part06/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part06/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part06/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part06/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part06/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part06/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part06/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part06/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part06/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/main.c -------------------------------------------------------------------------------- /linux/part06/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/makefile -------------------------------------------------------------------------------- /linux/part06/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part06/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part06/scripts/part07_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/scripts/part07_test.lua -------------------------------------------------------------------------------- /linux/part06/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p1_test.c -------------------------------------------------------------------------------- /linux/part06/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p1_test.h -------------------------------------------------------------------------------- /linux/part06/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p2_test.c -------------------------------------------------------------------------------- /linux/part06/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p2_test.h -------------------------------------------------------------------------------- /linux/part06/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p3_test.c -------------------------------------------------------------------------------- /linux/part06/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p3_test.h -------------------------------------------------------------------------------- /linux/part06/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p4_test.c -------------------------------------------------------------------------------- /linux/part06/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p4_test.h -------------------------------------------------------------------------------- /linux/part06/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p5_test.c -------------------------------------------------------------------------------- /linux/part06/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p5_test.h -------------------------------------------------------------------------------- /linux/part06/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p6_test.c -------------------------------------------------------------------------------- /linux/part06/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p6_test.h -------------------------------------------------------------------------------- /linux/part06/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p7_test.c -------------------------------------------------------------------------------- /linux/part06/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/test/p7_test.h -------------------------------------------------------------------------------- /linux/part06/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luado.c -------------------------------------------------------------------------------- /linux/part06/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luado.h -------------------------------------------------------------------------------- /linux/part06/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part06/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part06/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luagc.c -------------------------------------------------------------------------------- /linux/part06/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luagc.h -------------------------------------------------------------------------------- /linux/part06/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part06/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part06/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luavm.c -------------------------------------------------------------------------------- /linux/part06/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part06/vm/luavm.h -------------------------------------------------------------------------------- /linux/part07/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part07/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part07/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/lua.h -------------------------------------------------------------------------------- /linux/part07/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luabase.c -------------------------------------------------------------------------------- /linux/part07/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luabase.h -------------------------------------------------------------------------------- /linux/part07/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luainit.c -------------------------------------------------------------------------------- /linux/part07/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luamem.c -------------------------------------------------------------------------------- /linux/part07/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luamem.h -------------------------------------------------------------------------------- /linux/part07/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luaobject.c -------------------------------------------------------------------------------- /linux/part07/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luaobject.h -------------------------------------------------------------------------------- /linux/part07/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luastate.c -------------------------------------------------------------------------------- /linux/part07/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luastate.h -------------------------------------------------------------------------------- /linux/part07/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luastring.c -------------------------------------------------------------------------------- /linux/part07/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luastring.h -------------------------------------------------------------------------------- /linux/part07/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luatable.c -------------------------------------------------------------------------------- /linux/part07/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/common/luatable.h -------------------------------------------------------------------------------- /linux/part07/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part07/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part07/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part07/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part07/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part07/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part07/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part07/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part07/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/main.c -------------------------------------------------------------------------------- /linux/part07/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/makefile -------------------------------------------------------------------------------- /linux/part07/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part07/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part07/scripts/part07_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/scripts/part07_test.lua -------------------------------------------------------------------------------- /linux/part07/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p1_test.c -------------------------------------------------------------------------------- /linux/part07/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p1_test.h -------------------------------------------------------------------------------- /linux/part07/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p2_test.c -------------------------------------------------------------------------------- /linux/part07/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p2_test.h -------------------------------------------------------------------------------- /linux/part07/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p3_test.c -------------------------------------------------------------------------------- /linux/part07/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p3_test.h -------------------------------------------------------------------------------- /linux/part07/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p4_test.c -------------------------------------------------------------------------------- /linux/part07/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p4_test.h -------------------------------------------------------------------------------- /linux/part07/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p5_test.c -------------------------------------------------------------------------------- /linux/part07/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p5_test.h -------------------------------------------------------------------------------- /linux/part07/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p6_test.c -------------------------------------------------------------------------------- /linux/part07/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p6_test.h -------------------------------------------------------------------------------- /linux/part07/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p7_test.c -------------------------------------------------------------------------------- /linux/part07/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/test/p7_test.h -------------------------------------------------------------------------------- /linux/part07/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luado.c -------------------------------------------------------------------------------- /linux/part07/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luado.h -------------------------------------------------------------------------------- /linux/part07/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part07/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part07/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luagc.c -------------------------------------------------------------------------------- /linux/part07/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luagc.h -------------------------------------------------------------------------------- /linux/part07/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part07/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part07/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luavm.c -------------------------------------------------------------------------------- /linux/part07/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part07/vm/luavm.h -------------------------------------------------------------------------------- /linux/part08/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part08/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part08/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/lua.h -------------------------------------------------------------------------------- /linux/part08/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luabase.c -------------------------------------------------------------------------------- /linux/part08/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luabase.h -------------------------------------------------------------------------------- /linux/part08/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luainit.c -------------------------------------------------------------------------------- /linux/part08/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luamem.c -------------------------------------------------------------------------------- /linux/part08/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luamem.h -------------------------------------------------------------------------------- /linux/part08/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luaobject.c -------------------------------------------------------------------------------- /linux/part08/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luaobject.h -------------------------------------------------------------------------------- /linux/part08/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luastate.c -------------------------------------------------------------------------------- /linux/part08/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luastate.h -------------------------------------------------------------------------------- /linux/part08/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luastring.c -------------------------------------------------------------------------------- /linux/part08/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luastring.h -------------------------------------------------------------------------------- /linux/part08/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luatable.c -------------------------------------------------------------------------------- /linux/part08/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/common/luatable.h -------------------------------------------------------------------------------- /linux/part08/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part08/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part08/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part08/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part08/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part08/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part08/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part08/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part08/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/main.c -------------------------------------------------------------------------------- /linux/part08/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/makefile -------------------------------------------------------------------------------- /linux/part08/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part08/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part08/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /linux/part08/scripts/part08_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/scripts/part08_test.lua -------------------------------------------------------------------------------- /linux/part08/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p1_test.c -------------------------------------------------------------------------------- /linux/part08/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p1_test.h -------------------------------------------------------------------------------- /linux/part08/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p2_test.c -------------------------------------------------------------------------------- /linux/part08/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p2_test.h -------------------------------------------------------------------------------- /linux/part08/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p3_test.c -------------------------------------------------------------------------------- /linux/part08/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p3_test.h -------------------------------------------------------------------------------- /linux/part08/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p4_test.c -------------------------------------------------------------------------------- /linux/part08/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p4_test.h -------------------------------------------------------------------------------- /linux/part08/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p5_test.c -------------------------------------------------------------------------------- /linux/part08/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p5_test.h -------------------------------------------------------------------------------- /linux/part08/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p6_test.c -------------------------------------------------------------------------------- /linux/part08/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p6_test.h -------------------------------------------------------------------------------- /linux/part08/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p7_test.c -------------------------------------------------------------------------------- /linux/part08/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p7_test.h -------------------------------------------------------------------------------- /linux/part08/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p8_test.c -------------------------------------------------------------------------------- /linux/part08/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/test/p8_test.h -------------------------------------------------------------------------------- /linux/part08/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luado.c -------------------------------------------------------------------------------- /linux/part08/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luado.h -------------------------------------------------------------------------------- /linux/part08/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part08/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part08/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luagc.c -------------------------------------------------------------------------------- /linux/part08/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luagc.h -------------------------------------------------------------------------------- /linux/part08/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part08/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part08/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luavm.c -------------------------------------------------------------------------------- /linux/part08/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part08/vm/luavm.h -------------------------------------------------------------------------------- /linux/part09/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part09/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part09/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/lua.h -------------------------------------------------------------------------------- /linux/part09/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luabase.c -------------------------------------------------------------------------------- /linux/part09/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luabase.h -------------------------------------------------------------------------------- /linux/part09/common/luadebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luadebug.c -------------------------------------------------------------------------------- /linux/part09/common/luadebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luadebug.h -------------------------------------------------------------------------------- /linux/part09/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luainit.c -------------------------------------------------------------------------------- /linux/part09/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luamem.c -------------------------------------------------------------------------------- /linux/part09/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luamem.h -------------------------------------------------------------------------------- /linux/part09/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luaobject.c -------------------------------------------------------------------------------- /linux/part09/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luaobject.h -------------------------------------------------------------------------------- /linux/part09/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luastate.c -------------------------------------------------------------------------------- /linux/part09/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luastate.h -------------------------------------------------------------------------------- /linux/part09/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luastring.c -------------------------------------------------------------------------------- /linux/part09/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luastring.h -------------------------------------------------------------------------------- /linux/part09/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luatable.c -------------------------------------------------------------------------------- /linux/part09/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luatable.h -------------------------------------------------------------------------------- /linux/part09/common/luatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luatm.c -------------------------------------------------------------------------------- /linux/part09/common/luatm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/common/luatm.h -------------------------------------------------------------------------------- /linux/part09/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part09/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part09/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part09/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part09/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part09/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part09/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part09/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part09/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/main.c -------------------------------------------------------------------------------- /linux/part09/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/makefile -------------------------------------------------------------------------------- /linux/part09/scripts/debug_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/scripts/debug_test.lua -------------------------------------------------------------------------------- /linux/part09/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part09/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part09/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /linux/part09/scripts/part08_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/scripts/part08_test.lua -------------------------------------------------------------------------------- /linux/part09/scripts/part09_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/scripts/part09_test.lua -------------------------------------------------------------------------------- /linux/part09/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p1_test.c -------------------------------------------------------------------------------- /linux/part09/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p1_test.h -------------------------------------------------------------------------------- /linux/part09/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p2_test.c -------------------------------------------------------------------------------- /linux/part09/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p2_test.h -------------------------------------------------------------------------------- /linux/part09/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p3_test.c -------------------------------------------------------------------------------- /linux/part09/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p3_test.h -------------------------------------------------------------------------------- /linux/part09/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p4_test.c -------------------------------------------------------------------------------- /linux/part09/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p4_test.h -------------------------------------------------------------------------------- /linux/part09/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p5_test.c -------------------------------------------------------------------------------- /linux/part09/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p5_test.h -------------------------------------------------------------------------------- /linux/part09/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p6_test.c -------------------------------------------------------------------------------- /linux/part09/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p6_test.h -------------------------------------------------------------------------------- /linux/part09/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p7_test.c -------------------------------------------------------------------------------- /linux/part09/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p7_test.h -------------------------------------------------------------------------------- /linux/part09/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p8_test.c -------------------------------------------------------------------------------- /linux/part09/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p8_test.h -------------------------------------------------------------------------------- /linux/part09/test/p9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p9_test.c -------------------------------------------------------------------------------- /linux/part09/test/p9_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/test/p9_test.h -------------------------------------------------------------------------------- /linux/part09/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luado.c -------------------------------------------------------------------------------- /linux/part09/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luado.h -------------------------------------------------------------------------------- /linux/part09/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part09/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part09/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luagc.c -------------------------------------------------------------------------------- /linux/part09/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luagc.h -------------------------------------------------------------------------------- /linux/part09/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part09/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part09/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luavm.c -------------------------------------------------------------------------------- /linux/part09/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part09/vm/luavm.h -------------------------------------------------------------------------------- /linux/part10/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part10/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part10/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/lua.h -------------------------------------------------------------------------------- /linux/part10/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luabase.c -------------------------------------------------------------------------------- /linux/part10/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luabase.h -------------------------------------------------------------------------------- /linux/part10/common/luadebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luadebug.c -------------------------------------------------------------------------------- /linux/part10/common/luadebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luadebug.h -------------------------------------------------------------------------------- /linux/part10/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luainit.c -------------------------------------------------------------------------------- /linux/part10/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luamem.c -------------------------------------------------------------------------------- /linux/part10/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luamem.h -------------------------------------------------------------------------------- /linux/part10/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luaobject.c -------------------------------------------------------------------------------- /linux/part10/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luaobject.h -------------------------------------------------------------------------------- /linux/part10/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luastate.c -------------------------------------------------------------------------------- /linux/part10/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luastate.h -------------------------------------------------------------------------------- /linux/part10/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luastring.c -------------------------------------------------------------------------------- /linux/part10/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luastring.h -------------------------------------------------------------------------------- /linux/part10/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luatable.c -------------------------------------------------------------------------------- /linux/part10/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luatable.h -------------------------------------------------------------------------------- /linux/part10/common/luatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luatm.c -------------------------------------------------------------------------------- /linux/part10/common/luatm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/common/luatm.h -------------------------------------------------------------------------------- /linux/part10/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part10/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part10/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part10/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part10/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part10/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part10/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part10/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/main.c -------------------------------------------------------------------------------- /linux/part10/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/makefile -------------------------------------------------------------------------------- /linux/part10/scripts/debug_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/scripts/debug_test.lua -------------------------------------------------------------------------------- /linux/part10/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part10/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part10/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /linux/part10/scripts/part08_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/scripts/part08_test.lua -------------------------------------------------------------------------------- /linux/part10/scripts/part09_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/scripts/part09_test.lua -------------------------------------------------------------------------------- /linux/part10/test/p10_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p10_test.c -------------------------------------------------------------------------------- /linux/part10/test/p10_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p10_test.h -------------------------------------------------------------------------------- /linux/part10/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p1_test.c -------------------------------------------------------------------------------- /linux/part10/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p1_test.h -------------------------------------------------------------------------------- /linux/part10/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p2_test.c -------------------------------------------------------------------------------- /linux/part10/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p2_test.h -------------------------------------------------------------------------------- /linux/part10/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p3_test.c -------------------------------------------------------------------------------- /linux/part10/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p3_test.h -------------------------------------------------------------------------------- /linux/part10/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p4_test.c -------------------------------------------------------------------------------- /linux/part10/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p4_test.h -------------------------------------------------------------------------------- /linux/part10/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p5_test.c -------------------------------------------------------------------------------- /linux/part10/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p5_test.h -------------------------------------------------------------------------------- /linux/part10/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p6_test.c -------------------------------------------------------------------------------- /linux/part10/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p6_test.h -------------------------------------------------------------------------------- /linux/part10/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p7_test.c -------------------------------------------------------------------------------- /linux/part10/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p7_test.h -------------------------------------------------------------------------------- /linux/part10/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p8_test.c -------------------------------------------------------------------------------- /linux/part10/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p8_test.h -------------------------------------------------------------------------------- /linux/part10/test/p9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p9_test.c -------------------------------------------------------------------------------- /linux/part10/test/p9_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/test/p9_test.h -------------------------------------------------------------------------------- /linux/part10/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luado.c -------------------------------------------------------------------------------- /linux/part10/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luado.h -------------------------------------------------------------------------------- /linux/part10/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part10/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part10/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luagc.c -------------------------------------------------------------------------------- /linux/part10/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luagc.h -------------------------------------------------------------------------------- /linux/part10/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part10/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part10/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luavm.c -------------------------------------------------------------------------------- /linux/part10/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part10/vm/luavm.h -------------------------------------------------------------------------------- /linux/part11/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/clib/luaaux.c -------------------------------------------------------------------------------- /linux/part11/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/clib/luaaux.h -------------------------------------------------------------------------------- /linux/part11/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/lua.h -------------------------------------------------------------------------------- /linux/part11/common/luabase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luabase.c -------------------------------------------------------------------------------- /linux/part11/common/luabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luabase.h -------------------------------------------------------------------------------- /linux/part11/common/luadebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luadebug.c -------------------------------------------------------------------------------- /linux/part11/common/luadebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luadebug.h -------------------------------------------------------------------------------- /linux/part11/common/luainit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luainit.c -------------------------------------------------------------------------------- /linux/part11/common/luamem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luamem.c -------------------------------------------------------------------------------- /linux/part11/common/luamem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luamem.h -------------------------------------------------------------------------------- /linux/part11/common/luaobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luaobject.c -------------------------------------------------------------------------------- /linux/part11/common/luaobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luaobject.h -------------------------------------------------------------------------------- /linux/part11/common/luastate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luastate.c -------------------------------------------------------------------------------- /linux/part11/common/luastate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luastate.h -------------------------------------------------------------------------------- /linux/part11/common/luastring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luastring.c -------------------------------------------------------------------------------- /linux/part11/common/luastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luastring.h -------------------------------------------------------------------------------- /linux/part11/common/luatable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luatable.c -------------------------------------------------------------------------------- /linux/part11/common/luatable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luatable.h -------------------------------------------------------------------------------- /linux/part11/common/luatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luatm.c -------------------------------------------------------------------------------- /linux/part11/common/luatm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/common/luatm.h -------------------------------------------------------------------------------- /linux/part11/compiler/luacode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luacode.c -------------------------------------------------------------------------------- /linux/part11/compiler/luacode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luacode.h -------------------------------------------------------------------------------- /linux/part11/compiler/lualexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/lualexer.c -------------------------------------------------------------------------------- /linux/part11/compiler/lualexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/lualexer.h -------------------------------------------------------------------------------- /linux/part11/compiler/luaparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luaparser.c -------------------------------------------------------------------------------- /linux/part11/compiler/luaparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luaparser.h -------------------------------------------------------------------------------- /linux/part11/compiler/luazio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luazio.c -------------------------------------------------------------------------------- /linux/part11/compiler/luazio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/compiler/luazio.h -------------------------------------------------------------------------------- /linux/part11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/main.c -------------------------------------------------------------------------------- /linux/part11/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/makefile -------------------------------------------------------------------------------- /linux/part11/scripts/debug_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/debug_test.lua -------------------------------------------------------------------------------- /linux/part11/scripts/part05_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/part05_test.lua -------------------------------------------------------------------------------- /linux/part11/scripts/part06_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/part06_test.lua -------------------------------------------------------------------------------- /linux/part11/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /linux/part11/scripts/part08_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/part08_test.lua -------------------------------------------------------------------------------- /linux/part11/scripts/part09_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/part09_test.lua -------------------------------------------------------------------------------- /linux/part11/scripts/part11_test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/scripts/part11_test.lua -------------------------------------------------------------------------------- /linux/part11/test/p10_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p10_test.c -------------------------------------------------------------------------------- /linux/part11/test/p10_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p10_test.h -------------------------------------------------------------------------------- /linux/part11/test/p11_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p11_test.c -------------------------------------------------------------------------------- /linux/part11/test/p11_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p11_test.h -------------------------------------------------------------------------------- /linux/part11/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p1_test.c -------------------------------------------------------------------------------- /linux/part11/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p1_test.h -------------------------------------------------------------------------------- /linux/part11/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p2_test.c -------------------------------------------------------------------------------- /linux/part11/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p2_test.h -------------------------------------------------------------------------------- /linux/part11/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p3_test.c -------------------------------------------------------------------------------- /linux/part11/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p3_test.h -------------------------------------------------------------------------------- /linux/part11/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p4_test.c -------------------------------------------------------------------------------- /linux/part11/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p4_test.h -------------------------------------------------------------------------------- /linux/part11/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p5_test.c -------------------------------------------------------------------------------- /linux/part11/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p5_test.h -------------------------------------------------------------------------------- /linux/part11/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p6_test.c -------------------------------------------------------------------------------- /linux/part11/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p6_test.h -------------------------------------------------------------------------------- /linux/part11/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p7_test.c -------------------------------------------------------------------------------- /linux/part11/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p7_test.h -------------------------------------------------------------------------------- /linux/part11/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p8_test.c -------------------------------------------------------------------------------- /linux/part11/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p8_test.h -------------------------------------------------------------------------------- /linux/part11/test/p9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p9_test.c -------------------------------------------------------------------------------- /linux/part11/test/p9_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/test/p9_test.h -------------------------------------------------------------------------------- /linux/part11/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luado.c -------------------------------------------------------------------------------- /linux/part11/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luado.h -------------------------------------------------------------------------------- /linux/part11/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luafunc.c -------------------------------------------------------------------------------- /linux/part11/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luafunc.h -------------------------------------------------------------------------------- /linux/part11/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luagc.c -------------------------------------------------------------------------------- /linux/part11/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luagc.h -------------------------------------------------------------------------------- /linux/part11/vm/luaopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luaopcodes.c -------------------------------------------------------------------------------- /linux/part11/vm/luaopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luaopcodes.h -------------------------------------------------------------------------------- /linux/part11/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luavm.c -------------------------------------------------------------------------------- /linux/part11/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/linux/part11/vm/luavm.h -------------------------------------------------------------------------------- /tools/protodump/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/build.sh -------------------------------------------------------------------------------- /tools/protodump/build_proto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/build_proto.lua -------------------------------------------------------------------------------- /tools/protodump/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/dump.sh -------------------------------------------------------------------------------- /tools/protodump/lua-src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/Makefile -------------------------------------------------------------------------------- /tools/protodump/lua-src/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lapi.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lapi.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lauxlib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lauxlib.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lbaselib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lbitlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lbitlib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lcode.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lcode.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lcorolib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lctype.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lctype.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldblib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldebug.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldebug.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldo.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldo.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ldump.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lfunc.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lfunc.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lgc.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lgc.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/linit.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/liolib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/llex.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/llex.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/llimits.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lmathlib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lmem.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lmem.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/loadlib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lobject.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lobject.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lopcodes.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lopcodes.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/loslib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lparser.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lparser.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lprefix.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lstate.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lstate.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lstring.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lstring.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lstrlib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ltable.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ltable.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ltablib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ltm.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/ltm.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lua.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lua.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lua.hpp -------------------------------------------------------------------------------- /tools/protodump/lua-src/luac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/luac.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/luaconf.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lualib.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lundump.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lundump.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lutf8lib.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lvm.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lvm.h -------------------------------------------------------------------------------- /tools/protodump/lua-src/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lzio.c -------------------------------------------------------------------------------- /tools/protodump/lua-src/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua-src/lzio.h -------------------------------------------------------------------------------- /tools/protodump/lua.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/tools/protodump/lua.dump -------------------------------------------------------------------------------- /windows/project/.vs/project/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/.vs/project/v15/.suo -------------------------------------------------------------------------------- /windows/project/part01/bin/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part01/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part01/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part01/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/common/lua.h -------------------------------------------------------------------------------- /windows/project/part01/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part01/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/main.c -------------------------------------------------------------------------------- /windows/project/part01/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/makefile -------------------------------------------------------------------------------- /windows/project/part01/part01.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/part01.vcxproj -------------------------------------------------------------------------------- /windows/project/part01/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part01/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part01/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part01/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part01/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part02/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part02/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part02/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/common/lua.h -------------------------------------------------------------------------------- /windows/project/part02/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part02/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/main.c -------------------------------------------------------------------------------- /windows/project/part02/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/makefile -------------------------------------------------------------------------------- /windows/project/part02/part02.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/part02.vcxproj -------------------------------------------------------------------------------- /windows/project/part02/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/tags -------------------------------------------------------------------------------- /windows/project/part02/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part02/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part02/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part02/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part02/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part02/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part02/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part02/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part02/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part03/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part03/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part03/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/common/lua.h -------------------------------------------------------------------------------- /windows/project/part03/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part03/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/main.c -------------------------------------------------------------------------------- /windows/project/part03/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/makefile -------------------------------------------------------------------------------- /windows/project/part03/part03.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/part03.vcxproj -------------------------------------------------------------------------------- /windows/project/part03/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/tags -------------------------------------------------------------------------------- /windows/project/part03/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part03/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part03/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part03/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part03/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part03/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part03/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part03/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part03/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part03/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part03/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part03/vm/luavm.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part03/vm/luavm.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part04/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part04/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part04/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/common/lua.h -------------------------------------------------------------------------------- /windows/project/part04/compiler/TODO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/project/part04/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/main.c -------------------------------------------------------------------------------- /windows/project/part04/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/makefile -------------------------------------------------------------------------------- /windows/project/part04/part04.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/part04.vcxproj -------------------------------------------------------------------------------- /windows/project/part04/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/tags -------------------------------------------------------------------------------- /windows/project/part04/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part04/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part04/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part04/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part04/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part04/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part04/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part04/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part04/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part04/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part04/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part04/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part04/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part04/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part04/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part05/.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/.tags -------------------------------------------------------------------------------- /windows/project/part05/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part05/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part05/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/common/lua.h -------------------------------------------------------------------------------- /windows/project/part05/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/main.c -------------------------------------------------------------------------------- /windows/project/part05/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/makefile -------------------------------------------------------------------------------- /windows/project/part05/part05.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/part05.vcxproj -------------------------------------------------------------------------------- /windows/project/part05/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part05/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part05/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part05/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part05/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part05/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part05/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part05/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part05/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part05/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part05/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part05/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part05/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part05/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part05/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part05/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part05/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part05/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part05/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part06/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part06/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part06/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/common/lua.h -------------------------------------------------------------------------------- /windows/project/part06/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/main.c -------------------------------------------------------------------------------- /windows/project/part06/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/makefile -------------------------------------------------------------------------------- /windows/project/part06/part06.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/part06.vcxproj -------------------------------------------------------------------------------- /windows/project/part06/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p6_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p6_test.h -------------------------------------------------------------------------------- /windows/project/part06/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p7_test.c -------------------------------------------------------------------------------- /windows/project/part06/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/test/p7_test.h -------------------------------------------------------------------------------- /windows/project/part06/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part06/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part06/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part06/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part06/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part06/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part06/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part06/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part06/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part07/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part07/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part07/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/common/lua.h -------------------------------------------------------------------------------- /windows/project/part07/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/main.c -------------------------------------------------------------------------------- /windows/project/part07/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/makefile -------------------------------------------------------------------------------- /windows/project/part07/part07.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/part07.vcxproj -------------------------------------------------------------------------------- /windows/project/part07/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p6_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p6_test.h -------------------------------------------------------------------------------- /windows/project/part07/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p7_test.c -------------------------------------------------------------------------------- /windows/project/part07/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/test/p7_test.h -------------------------------------------------------------------------------- /windows/project/part07/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part07/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part07/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part07/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part07/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part07/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part07/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part07/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part07/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part08/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part08/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part08/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/common/lua.h -------------------------------------------------------------------------------- /windows/project/part08/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/main.c -------------------------------------------------------------------------------- /windows/project/part08/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/makefile -------------------------------------------------------------------------------- /windows/project/part08/part08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/part08.vcxproj -------------------------------------------------------------------------------- /windows/project/part08/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /windows/project/part08/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p6_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p6_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p7_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p7_test.h -------------------------------------------------------------------------------- /windows/project/part08/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p8_test.c -------------------------------------------------------------------------------- /windows/project/part08/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/test/p8_test.h -------------------------------------------------------------------------------- /windows/project/part08/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part08/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part08/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part08/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part08/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part08/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part08/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part08/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part08/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part09/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part09/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part09/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/common/lua.h -------------------------------------------------------------------------------- /windows/project/part09/common/luatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/common/luatm.c -------------------------------------------------------------------------------- /windows/project/part09/common/luatm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/common/luatm.h -------------------------------------------------------------------------------- /windows/project/part09/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/main.c -------------------------------------------------------------------------------- /windows/project/part09/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/makefile -------------------------------------------------------------------------------- /windows/project/part09/part09.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/part09.vcxproj -------------------------------------------------------------------------------- /windows/project/part09/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /windows/project/part09/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p6_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p6_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p7_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p7_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p8_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p8_test.h -------------------------------------------------------------------------------- /windows/project/part09/test/p9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p9_test.c -------------------------------------------------------------------------------- /windows/project/part09/test/p9_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/test/p9_test.h -------------------------------------------------------------------------------- /windows/project/part09/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part09/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part09/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part09/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part09/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part09/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part09/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part09/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part09/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part10/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part10/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part10/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/common/lua.h -------------------------------------------------------------------------------- /windows/project/part10/common/luatm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/common/luatm.c -------------------------------------------------------------------------------- /windows/project/part10/common/luatm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/common/luatm.h -------------------------------------------------------------------------------- /windows/project/part10/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/main.c -------------------------------------------------------------------------------- /windows/project/part10/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/makefile -------------------------------------------------------------------------------- /windows/project/part10/part10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/part10.vcxproj -------------------------------------------------------------------------------- /windows/project/part10/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /windows/project/part10/test/p1_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p1_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p1_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p1_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p2_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p2_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p2_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p2_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p3_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p3_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p3_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p3_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p4_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p4_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p4_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p4_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p5_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p5_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p5_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p5_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p6_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p6_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p6_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p6_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p7_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p7_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p7_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p7_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p8_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p8_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p8_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p8_test.h -------------------------------------------------------------------------------- /windows/project/part10/test/p9_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p9_test.c -------------------------------------------------------------------------------- /windows/project/part10/test/p9_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/test/p9_test.h -------------------------------------------------------------------------------- /windows/project/part10/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part10/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part10/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part10/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part10/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part10/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part10/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part10/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part10/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/part11/clib/luaaux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/clib/luaaux.c -------------------------------------------------------------------------------- /windows/project/part11/clib/luaaux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/clib/luaaux.h -------------------------------------------------------------------------------- /windows/project/part11/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/common/lua.h -------------------------------------------------------------------------------- /windows/project/part11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/main.c -------------------------------------------------------------------------------- /windows/project/part11/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/makefile -------------------------------------------------------------------------------- /windows/project/part11/scripts/part07_test.lua: -------------------------------------------------------------------------------- 1 | print("h"), a, b = 1, 2, 3 -------------------------------------------------------------------------------- /windows/project/part11/vm/luado.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luado.c -------------------------------------------------------------------------------- /windows/project/part11/vm/luado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luado.h -------------------------------------------------------------------------------- /windows/project/part11/vm/luafunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luafunc.c -------------------------------------------------------------------------------- /windows/project/part11/vm/luafunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luafunc.h -------------------------------------------------------------------------------- /windows/project/part11/vm/luagc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luagc.c -------------------------------------------------------------------------------- /windows/project/part11/vm/luagc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luagc.h -------------------------------------------------------------------------------- /windows/project/part11/vm/luavm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luavm.c -------------------------------------------------------------------------------- /windows/project/part11/vm/luavm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/part11/vm/luavm.h -------------------------------------------------------------------------------- /windows/project/project.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manistein/dummylua-tutorial/HEAD/windows/project/project.sln --------------------------------------------------------------------------------