1,402 questions
-5
votes
1
answer
237
views
How to Migrate from Java 8 32-bit to Java 17 32-bit? Eclipse Support Issues [closed]
I have been assigned a Java migration task. Currently, I am using Java 8 (32-bit), and now I need to migrate to Java 17 (32-bit). However, I noticed that there is no 32-bit version of Java 17 ...
1
vote
2
answers
148
views
App Maui .net 9.0. How configure project to create apk file for tablet 32bit armeabi-7a/armeabi?
I have to create andoid app with maui .net 9.0 and I have to use old tablet with cpu 32bit.
Tablet details: 2018, Android Version 10, API 29, Java VM ART 2.1.0, Kernel architecture armv8l, armeabi-7a/...
3
votes
1
answer
107
views
Do the bytes "00 10 A1 B3" make sense in Arm 32-bit architecture?
The bytes 00 10 A0 B3 decodes to movlt r1, #0 in the arm 32-bit architecture.
When I type the bytes 00 10 A1 B3 into the shell-storm online disassembler, it shows "N/A".
However, in the ...
0
votes
0
answers
250
views
Suitable Pandas installation on 32-bit Python (3.10, 3.11)
I am trying to use the Kiwoom OpenAPI (for making automated stock trading program), which requires a 32-bit Python environment. However, to successfully use Kiwoom Open API I need to set up pandas in ...
0
votes
0
answers
60
views
how to implement blocking system call in xv6?
I am currently reading xv6 kernel source ported to 32bit x86. My question is regarding blocking io syscall, i.e., bread. I am expecting some trap handler in xv6 that sets its own process state to ...
0
votes
1
answer
110
views
Emulate keyboard click on Windows using NASM assembler
I am not an experienced developer, do not judge strictly
I am writing a short application in NASM assembly language, I managed to make the click click of the CapsLock keyboard, but the problem is that ...
-3
votes
2
answers
150
views
integer overflow in expression of type ‘int’ results in ‘1’ [-Woverflow]
I want to understand more about int overflow in C++ on a 64-bit system. So I would like to stick to int for my understanding without casting / extending the type to unsigned or 64-bit and I am on ...
0
votes
1
answer
732
views
My 32 bit window application is crashing on Window 11 24H2 version [closed]
My 32-bit Windows application is crashing after updating to Windows 11 24H2, while it runs without issues on both earlier and later Windows versions.
The crash results in an "Out of Memory" ...
0
votes
0
answers
182
views
Problem installing python libraries (scipy, speechmatics) on 32 bit windows
Ok, I guess this is a bit of an impossible situation... But hoping some of you may be able to help me out: I'm not managing to install certain python libraries - notably speechmatics-python and scipy -...
0
votes
1
answer
136
views
Loading DLL with dynamic path in Excel 32bit
I'm currently trying to load a dll (C++) with a dynamic path into my VBA Code.
I've two different dll's, one for 32bit and one for 64bit. Both dll's are working fine, I can also use both if i declare ...
0
votes
1
answer
93
views
"[WinError 193] %1 is not a valid Win32 application" running CDLL with 64 bit MinGW-w64
I'm trying to compile and run a package on Windows 11 with MinGW-w64, but I'm getting the error message "[WinError 193] %1 is not a valid Win32 application" when I try to run the .dll ...
-1
votes
1
answer
113
views
Problems using a C++ Dll with Excel 2016 32bit
im looking for a solution, that a DLL is not running on Excel 2016 32bit. I've tried so much in the recent weeks, that i have no idea left. I only get it running on Excel 64bit, I have two different ...
2
votes
1
answer
75
views
How to properly print user input in the correct position in 32-bit assembly?
I am currently developing a simple "About me" section in the terminal. I am using NASM assembly and running Ubuntu in Oracle VM. I am currently having trouble with printing the user input ...
0
votes
1
answer
123
views
Divide 8-byte stored in 2 uint32 by a uint32 it on a machine with 32-bit operation
I want to divide uint64 by a uint32 in WebGPU, which currently only handles uint32 operations. So I am trying to simulate this by storing my long into two uint32 buffers high and low. and now I want ...
2
votes
1
answer
127
views
How can I read a binary file in C
I'm trying to read a binary file that has a sequence of integers, a file that has 100 integers in sequence.
The beginning of the sequence is:
20 2 22 4 22 10 5 5 4 1 ...
Using the xxd -b bin_100.bin ...