Hi Tyler,
Sorry for the delay. I have checked and I found that the vector table is copied to address 0x0093FFB8.
You can get this address from the linker file.
.ram_vectors (ORIGIN(OCRAM) + LENGTH(OCRAM) - RAM_VECTORS_SIZE) (NOLOAD) :
{
__ram_vectors_start = .;
. += RAM_VECTORS_SIZE;
__ram_vectors_end = .;
} > OCRAM
And if you see section 8.4.5 Exception Handling in RM you can see that this address correponds to the address of the RAM exception table after and in the boot process. This would mean that the Boot ROM changes the VBAR and I assume that maybe that is why the VBAR register never changes in the SDK.
I hope that helps,
Alejandro