SPR_SVR
booke_cpu_startup(socname(mfspr(SPR_SVR)));
uint16_t svr = mfspr(SPR_SVR) >> 16;
const uint32_t svr = mfspr(SPR_SVR);
const uint16_t svr = (mfspr(SPR_SVR) & ~0x80000) >> 16;
uint32_t svr = (mfspr(SPR_SVR) >> 16) & ~8;
const uint16_t svr = (mfspr(SPR_SVR) & ~0x80000) >> 16;
__func__, (uintmax_t)mfspr(SPR_SVR));
if (OPC_MFSPR_P(opcode, SPR_SVR)) {
: "n"(SPR_SVR));