├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── after_call.png ├── after_mba.png ├── after_xref.png ├── before_call.png └── before_xref.png ├── premake5.lua └── source ├── limbo.h ├── limbo ├── defines.h ├── emulation.h ├── helpers.h ├── mba.h └── rng.h └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/README.md -------------------------------------------------------------------------------- /assets/after_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/assets/after_call.png -------------------------------------------------------------------------------- /assets/after_mba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/assets/after_mba.png -------------------------------------------------------------------------------- /assets/after_xref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/assets/after_xref.png -------------------------------------------------------------------------------- /assets/before_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/assets/before_call.png -------------------------------------------------------------------------------- /assets/before_xref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/assets/before_xref.png -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/premake5.lua -------------------------------------------------------------------------------- /source/limbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo.h -------------------------------------------------------------------------------- /source/limbo/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo/defines.h -------------------------------------------------------------------------------- /source/limbo/emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo/emulation.h -------------------------------------------------------------------------------- /source/limbo/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo/helpers.h -------------------------------------------------------------------------------- /source/limbo/mba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo/mba.h -------------------------------------------------------------------------------- /source/limbo/rng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/limbo/rng.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatLing/limba/HEAD/source/main.cpp --------------------------------------------------------------------------------