Skip to content

Commit

Permalink
Merge pull request HJLebbink#110 from EugeneKramer/patch-1
Browse files Browse the repository at this point in the history
Correct ordinal indicator suffix for Intel nth gen
  • Loading branch information
HJLebbink authored May 24, 2020
2 parents 5406cca + 742c787 commit 8838b57
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions VS/CSHARP/asm-dude-vsix/OptionsPage/AsmDudeOptionPageUI.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,11 +197,11 @@
<CheckBox x:Name="PerformanceInfo_IsDefaultCollapsed_UI" Grid.Column="1" Grid.Row="0" ToolTipService.ShowOnDisabled="True" ToolTip="Whether performance information is collapsed by default" Content="Default collapsed" VerticalAlignment="Center" />

<!--<CheckBox x:Name="PerformanceInfo_SandyBridge_UI" Grid.Row="0" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Sandy Bridge in instruction QuickInfo tooltips" Content="Sandy Bridge (Intel 2nd gen Core)" VerticalAlignment="Center" Width="Auto" /> -->
<CheckBox x:Name="PerformanceInfo_IvyBridge_UI" Grid.Row="1" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Ivy Bridge in instruction QuickInfo tooltips" Content="Ivy Bridge (Intel 3nd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Haswell_UI" Grid.Row="2" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Haswell in instruction QuickInfo tooltips" Content="Haswell (Intel 4nd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Broadwell_UI" Grid.Row="3" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Broadwell in instruction QuickInfo tooltips" Content="Broadwell (Intel 5nd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Skylake_UI" Grid.Row="4" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Skylake in instruction QuickInfo tooltips" Content="Skylake (Intel 6nd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_SkylakeX_UI" Grid.Row="5" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Skylake-X in instruction QuickInfo tooltips" Content="Skylake-X (Intel 7nd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_IvyBridge_UI" Grid.Row="1" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Ivy Bridge in instruction QuickInfo tooltips" Content="Ivy Bridge (Intel 3rd gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Haswell_UI" Grid.Row="2" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Haswell in instruction QuickInfo tooltips" Content="Haswell (Intel 4th gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Broadwell_UI" Grid.Row="3" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Broadwell in instruction QuickInfo tooltips" Content="Broadwell (Intel 5th gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_Skylake_UI" Grid.Row="4" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Skylake in instruction QuickInfo tooltips" Content="Skylake (Intel 6th gen Core)" VerticalAlignment="Center" Width="Auto" />
<CheckBox x:Name="PerformanceInfo_SkylakeX_UI" Grid.Row="5" ToolTipService.ShowOnDisabled="True" ToolTip="Show performance information for Skylake-X in instruction QuickInfo tooltips" Content="Skylake-X (Intel 7th gen Core)" VerticalAlignment="Center" Width="Auto" />
</Grid>
</GroupBox>
<GroupBox Header="Intellisense" >
Expand Down

0 comments on commit 8838b57

Please sign in to comment.