Hello,
I would like to access a 4byte-register in 1bit unit.
So, I was supposed to use a bit field to define a register like this.
----------------------------------------
typedef struct register{
uint32_t B1 : 1;
uint32_t B2 : 1;
uint32_t B3 : 30;
}register;
------------------------------------------
Then, How do you define this in VMStateDescription?
And can I set a value to register.B2 from the ***_write function?
Best regards,
Hiroko