diff options
| author | Alexandre Julliard <julliard@winehq.org> | 2023-07-03 21:54:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-03 21:54:37 +0200 |
| commit | a450806dd2da14cf29b6b01dc8e7e385e65f8dcb (patch) | |
| tree | 813f68ac9f6b2f5214460ca1d3bef1407edfedf7 /src/main.c | |
| parent | cf6048419baf5c7a29ddf5a2463d7ae744832463 (diff) | |
| download | box64-a450806dd2da14cf29b6b01dc8e7e385e65f8dcb.tar.gz box64-a450806dd2da14cf29b6b01dc8e7e385e65f8dcb.zip | |
A few Push/Pop fixes and cleanups (#878)
* Use 32-bit push/pop for PUSHAD/POPAD. * Always specify the Push/Pop size explicitly. * Make the Push/Pop functions inline.
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 9fb48f7d..e06cd2ad 100755 --- a/src/main.c +++ b/src/main.c @@ -35,6 +35,7 @@ #include "x64run.h" #include "symbols.h" #include "rcfile.h" +#include "emu/x64run_private.h" box64context_t *my_context = NULL; int box64_quit = 0; |