Box86 - Linux Userspace x86 Emulator with a twist, targeted at ARM Linux devices
Go to file
2019-02-11 09:47:22 +01:00
src New developpement cycle 2019-02-11 09:47:22 +01:00
tests Working on fork, with test. 2019-01-19 15:07:38 +01:00
.gitignore Finished inlining a lot of stuff (without getting large speed boost, a JIT is needed) 2019-02-03 23:17:15 +01:00
CHANGELOG.md New developpement cycle 2019-02-11 09:47:22 +01:00
CMakeLists.txt Added openal and a bunch of related libs (but not alure yet), plus a few functions from here and there 2019-02-09 19:14:57 +01:00
README.md Pushed to v0.0.2 2019-02-11 09:08:00 +01:00
rebuild_wrappers.py Working on fork, with test. 2019-01-19 15:07:38 +01:00
runTest.cmake More instruction, with fixes. printf is working now, and so is test04 2018-12-22 16:15:26 +01:00

box86

Linux Userspace x86 Emulator with a twist

Box86 will let run x86 Linux program (games) on non-x86 Linux, like ARM (needs to be 32bits little-endian).

Also, Box86 use native version for some "system" libraries, like libc, libm, or SDL and OpenGL, leading to more performance and easier integration with host system.

Most x86 Games needs OpenGL, so on ARM platform, a solution like gl4es is probably needed.

Current version is higly experimental and early, and most stuff wont run and run correctly. For now, WorldOfGoo does run correctly. FTL runs but sound is distorted...

If you are serious about developping Box86, you should install ccache and activate it's support in the cmake project (use ccmake for example) To have the TRACE enabled (i.e. dumping to stdout all individual x86 instruction execute, with dump of registers), you'll also need Zydis library accessible on your system.

Some x86 internal opcode use parts of "Realmode X86 Emulator Library", see x86primop.c for copyright details

Change log is accessible here