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.
My code likes below, but after gcc compiles, the output of this routine is always 'unmatch'. It seems RXC_SLOT is always 8-bit width in this code, not 6. Why? #include <stdint.h> #include <stdio.h> typedef struct _RX_CONROL_t { union { struct { //32'b{RESERVED12, RX_ABORT, RXC_RECEIVE, RXC_SOURCE_PORT, RXC_SLOT} //32'b{ 20bit, 1bit, 1bit, [...] read more