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've set up a hello world program just for testing my riscv32-unknown-elf toolchain, spike, pk etc. Though I managed to get the hello world printed using spike --isa=RV32 pk hello.elf, I found out that if I added the -d flag for debugging, I was given following instructions (a section of [...] read more
I have an unsigned char array with values as below: u_char *t_header[4]; //filled with values 0x00000047,0x00000004,0x00000093,0x00000012 I have a struct as below: #pragma pack(push, 1) typedef struct th_struct { unsigned s_byte : 8; unsigned t_e_indicator : 1; unsigned p_u_s_indicator : 1; unsigned t_priority : 1; unsigned id : 13; unsigned [...] read more