I am using STM32H7, I find in assembly a special-purpose register called "CONTROL", which I assume it is 3 bits long according to this doc.
MSR CONTROL, r4
After debugging and the ARMv7m documentation, I think "CONTROL" register is just a logical register, which is part of the ACTLR register, where the FPCA bit is the DISFPCA bit in ACTLR, am I right?
I checked the value of the ACTLR after an MSR instruction but no changes at all,
What is the CONTROL register and how can I debug it?
What is the address of the CONTROL register and the General Purpose Registers (e.g r4)?