This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I have an ARM binary of which I need to find exactly at which addresses its function's prologues end and the epilogues begin. In other words, I need the boundaries of the function bodies. For instance, if I have a function whose assembly is something like: 0x00000320 <+0>: push {r7, [...] read more
I am trying to bring up one of the ADC's on the STM32L476 Nucleo board. I think i have things configured ok, but i must be missing a step. I know this can be done use the HAL API and CubeMX, but i prefer register level access when bringing up [...] read more
I have the below code snippet Class Filters { vector<int> numbers; } Filters f1; I need to debug the content inside f1.numbers Windbg> ??f1.numbers class std::vector<bool,std::allocator<bool> > +0x000 _Myvec : std::vector<unsigned int,std::allocator<unsigned int> > +0x018 _Mysize : 7 Windbg> ??f1.numbers._Myvec._Mypair._Myval2 class std::_Vector_val<std::_Simple_types<unsigned int> > +0x000 _Myfirst : 0x00000089`006cf220 -> 0x7e [...] read more
I am using 16bit microcontroller which uses gcc4.5 compiler, 32kbyte flash/1kbyte ram. compiling is fine without error, memory is reaching to it's limit but it has some vacancy on both flash/ram and works just fine However, when i define static array without initialization it causes system to die. I cannot [...] read more
Using FASM I'm trying to shift dword with a SHR instruction which should shift bits to right appending zeroes. Here is the code: format ELF executable 3 entry start segment readable executable start: cmp byte [counter],0 jz fin mov eax,4 mov ebx,1 mov ecx,some mov edx,4 int 0x80 ; write [...] read more