Code:
```
>>> for frame in getStack():
... print( frame.getLocals() )
...
[]
[]
Traceback (most recent call last):
File "<console>", line 2, in <module>
DbgException: AMD64 context: unsupported register index 365
```
365 is R13D register:
```
>find "365" "c:\Program Files (x86)\Microsoft Visual Studio 12.0\DIA SDK\include\cvconst.h"
---------- C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\DIA SDK\INCLUDE\CVCONST.H
CV_REG_YMM0D1 = 365,
CV_AMD64_R13D = 365,
```
```
>>> for frame in getStack():
... print( frame.getLocals() )
...
[]
[]
Traceback (most recent call last):
File "<console>", line 2, in <module>
DbgException: AMD64 context: unsupported register index 365
```
365 is R13D register:
```
>find "365" "c:\Program Files (x86)\Microsoft Visual Studio 12.0\DIA SDK\include\cvconst.h"
---------- C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO 12.0\DIA SDK\INCLUDE\CVCONST.H
CV_REG_YMM0D1 = 365,
CV_AMD64_R13D = 365,
```