libx86emu icon indicating copy to clipboard operation
libx86emu copied to clipboard

x86 emulation library

Results 10 libx86emu issues
Sort by recently updated
recently updated
newest added

These changes were inspired by `hwinfo`s Makefile and by the [GNU make manual](https://www.gnu.org/software/make/manual/make.html#Makefile-Conventions). The current version detection system and the changelog are fully dependent on git. This complicates building from...

The "Compile.bat" files were the simplest way to build for people accustomed to Linux make files that I could create without learning nmake. I was very careful to only make...

(1) Add a 32-bit stack in place of the current 16-bit stack so that the code is fully 32-bit. (2) Allow room for the NULL terminating byte. (One of my...

It only took a few very minor changes to adapt the code to compile under Visual Studio 2017. I am pretty sure that this is a comprehensive list all all...

Hello, I have developed a python binding for this code; would this be something that I should create a PR for, or should I create a separate repository? Also, is...

In protected mode, like in real mode, when decoding an address like [ebp+...], the segment used must be SS, not DS

Build fails with GCC14. Error log: ``` [ 12s] gcc -c -g -O2 -fPIC -fvisibility=hidden -fomit-frame-pointer -Wall mem.c [ 12s] mem.c: In function ‘vm_i_byte’: [ 12s] mem.c:581:12: error: implicit declaration...

There seems to be an assumption that vsnprintf() returns a number of characters that were written. That is actually not the case -- it returns number of characters that *would*...

It upsets gcc's -Wmisleading-indentation: ``` prim_ops.c: In function ‘sbb_word’: prim_ops.c:1780:5: warning: this ‘else’ clause does not guard... [-Wmisleading-indentation] 1780 | else | ^~~~ In file included from prim_ops.c:99: include/x86emu_int.h:76:3: note:...