diff --git a/src/Spice86/ViewModels/DisassemblyViewModel.cs b/src/Spice86/ViewModels/DisassemblyViewModel.cs index ceb9e7d19..e2df25779 100644 --- a/src/Spice86/ViewModels/DisassemblyViewModel.cs +++ b/src/Spice86/ViewModels/DisassemblyViewModel.cs @@ -253,118 +253,6 @@ public CpuInstructionInfo? SelectedInstruction { [RelayCommand(CanExecute = nameof(IsPaused))] private async Task CopyLine() { - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (SelectedInstruction is not null) { await _textClipboard.SetTextAsync(SelectedInstruction.StringRepresentation); }