diff options
Diffstat (limited to '')
| -rw-r--r-- | results/scraper/box64/75 | 24 | ||||
| -rw-r--r-- | results/scraper/box64/754 | 3 | ||||
| -rw-r--r-- | results/scraper/box64/755 | 2 | ||||
| -rw-r--r-- | results/scraper/box64/758 | 47 |
4 files changed, 76 insertions, 0 deletions
diff --git a/results/scraper/box64/75 b/results/scraper/box64/75 new file mode 100644 index 000000000..39b858184 --- /dev/null +++ b/results/scraper/box64/75 @@ -0,0 +1,24 @@ +fpu_do_push() function problem +Such as title. +function fpu_do_push(emu) + +``` +static inline void fpu_do_push(x64emu_t* emu) +{ + int newtop = (emu->top-1)&7; + /*if(emu->p_regs[newtop].tag!=0b11) {// not empty, overflow! + printf_log(LOG_NONE, "Warning: %p: FPU Stack overflow\n", (void*)emu->old_ip); // probably better to raise something + //emu->quit = 1; + return; + }*/ + if(emu->fpu_stack<8) + ++emu->fpu_stack; + emu->p_regs[newtop].tag = 0; // full + emu->top = newtop; +} +``` + +However, the Intel manual describes when operating the FPU stack. +Set FPU flags C1 to 1 if stack overflow occurred; otherwise, set to 0. + +So, Did you forget to set flags here? Should I add this operation? \ No newline at end of file diff --git a/results/scraper/box64/754 b/results/scraper/box64/754 new file mode 100644 index 000000000..62467b990 --- /dev/null +++ b/results/scraper/box64/754 @@ -0,0 +1,3 @@ +Wine broken after last commits +Hi, I has collect box64 in 30 April 2023, Wine 7.20 working fine. Today, I collect Box64 and Wine won't working now. Disks not showing, If I try to recreate prefix Wine showing: `wine: could not load kernel32.dll, status c0000135`. Last commits has broke Wine? +Hardware: POCO X3 Pro, Snapdragon 860, 6/128, Arrow OS 13, (Android 13, Box64 launching in Termux proot environment), Box64 compiled with BAD_SIGNAL \ No newline at end of file diff --git a/results/scraper/box64/755 b/results/scraper/box64/755 new file mode 100644 index 000000000..27b5a6af0 --- /dev/null +++ b/results/scraper/box64/755 @@ -0,0 +1,2 @@ +Running Unciv on VF2 +[Unciv](https://github.com/yairm210/Unciv) works on VF2 without Dynarec (super slow), but segfaulted almost immediately with Dynarec. \ No newline at end of file diff --git a/results/scraper/box64/758 b/results/scraper/box64/758 new file mode 100644 index 000000000..228b2752c --- /dev/null +++ b/results/scraper/box64/758 @@ -0,0 +1,47 @@ +Cassette Beasts (Godot) +``` +Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL PageSize:4096 Running on Unknown CPU with 6 Cores +Params database has 8 entries +Box64 with Dynarec v0.2.2 nogit built on Jan 1 1980 00:00:00 +Using default BOX64_LD_LIBRARY_PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/ +Using default BOX64_PATH: ./:bin/ +Counted 134 Env var +Looking for ./CassetteBeasts.x86_64 +Rename process to "CassetteBeasts.x86_64" +Using native(wrapped) libc.so.6 +Using native(wrapped) ld-linux-x86-64.so.2 +Using native(wrapped) libpthread.so.0 +Using native(wrapped) libutil.so.1 +Using native(wrapped) librt.so.1 +Using native(wrapped) libXcursor.so.1 +Using native(wrapped) libXinerama.so.1 +Using native(wrapped) libX11.so.6 +Using native(wrapped) libXext.so.6 +Using native(wrapped) libxcb.so.1 +Using native(wrapped) libXau.so.6 +Using native(wrapped) libdl.so.2 +Using native(wrapped) libXdmcp.so.6 +Using native(wrapped) libXrandr.so.2 +Using native(wrapped) libXrender.so.1 +Using native(wrapped) libXi.so.6 +Using native(wrapped) libGL.so.1 +Using emulated libsteam_api.so +Using native(wrapped) libm.so.6 +Warning: Global Symbol ZSTD_trace_compress_end not found, cannot apply R_X86_64_GLOB_DAT @0x2afaf78 ((nil)) in /home/puna/Games/Cassette Beasts/CassetteBeasts.x86_64 +Warning: Global Symbol ZSTD_trace_decompress_begin not found, cannot apply R_X86_64_GLOB_DAT @0x2afaf90 ((nil)) in /home/puna/Games/Cassette Beasts/CassetteBeasts.x86_64 +Warning: Global Symbol ZSTD_trace_decompress_end not found, cannot apply R_X86_64_GLOB_DAT @0x2afaf98 ((nil)) in /home/puna/Games/Cassette Beasts/CassetteBeasts.x86_64 +Warning: Global Symbol ZSTD_trace_compress_begin not found, cannot apply R_X86_64_GLOB_DAT @0x2afafb8 ((nil)) in /home/puna/Games/Cassette Beasts/CassetteBeasts.x86_64 +Godot Engine v3.5.1.stable.custom_build.b54cb7426 - https://godotengine.org +OpenGL ES 3.0 Renderer: Mali-T860 (Panfrost) +Async. shader compilation: OFF +Using native(wrapped) libasound.so.2 +Using native(wrapped) libpulse.so.0 +Using native(wrapped) libudev.so.1 + +Error: PltResolver: Symbol XkbGetControls(ver 0: XkbGetControls) not found, cannot apply R_X86_64_JUMP_SLOT 0x2afb1e8 (0x407af6) in /home/puna/Games/Cassette Beasts/CassetteBeasts.x86_64 +Sigfault/Segbus while quitting, exiting silently +``` + +Maybe needs this implemented? + +https://github.com/ptitSeb/box64/blob/69eb071fab2ee0e429a01e2915881c872aae6a6c/src/wrapped/wrappedlibx11_private.h#L586 \ No newline at end of file |