mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-02 18:01:01 +01:00
11 lines
472 B
Plaintext
11 lines
472 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
||
|
<Type Name="BitField<*,*,*>">
|
||
|
<DisplayString Condition="$T2 == 1">{(storage & (1 << $T1)) != 0}</DisplayString>
|
||
|
<DisplayString>{(storage >> $T1) & ((1 << $T2) - 1)}</DisplayString>
|
||
|
<Expand>
|
||
|
<Item Name="Offset">$T1</Item>
|
||
|
<Item Name="Size">$T2</Item>
|
||
|
</Expand>
|
||
|
</Type>
|
||
|
</AutoVisualizer>
|