diff --git a/src/Spice86/Models/Debugging/CpuInstructionInfo.cs b/src/Spice86/Models/Debugging/CpuInstructionInfo.cs index e2304d614..a16839521 100644 --- a/src/Spice86/Models/Debugging/CpuInstructionInfo.cs +++ b/src/Spice86/Models/Debugging/CpuInstructionInfo.cs @@ -4,7 +4,6 @@ namespace Spice86.Models.Debugging; using Iced.Intel; -using Spice86.Core.Emulator.VM.Breakpoint; using Spice86.Shared.Emulator.Memory; public partial class CpuInstructionInfo : ObservableObject { diff --git a/src/Spice86/Models/Debugging/ExceptionInfo.cs b/src/Spice86/Models/Debugging/ExceptionInfo.cs index d6be0ec81..fe7a04599 100644 --- a/src/Spice86/Models/Debugging/ExceptionInfo.cs +++ b/src/Spice86/Models/Debugging/ExceptionInfo.cs @@ -1,5 +1,2 @@ namespace Spice86.Models.Debugging; - -using System.Reflection; - public record ExceptionInfo(string? TargetSite, string Message, string? StackTrace); \ No newline at end of file diff --git a/src/Spice86/Models/Debugging/SoundChannelInfo.cs b/src/Spice86/Models/Debugging/SoundChannelInfo.cs index 886d8efb2..9f2da7943 100644 --- a/src/Spice86/Models/Debugging/SoundChannelInfo.cs +++ b/src/Spice86/Models/Debugging/SoundChannelInfo.cs @@ -2,8 +2,6 @@ namespace Spice86.Models.Debugging; using CommunityToolkit.Mvvm.ComponentModel; -using System.ComponentModel; - public partial class SoundChannelInfo : ObservableObject { [ObservableProperty] private int _volume; [ObservableProperty] private float _stereoSeparation; diff --git a/src/Spice86/Models/Debugging/VideoCardInfo.cs b/src/Spice86/Models/Debugging/VideoCardInfo.cs index 51d7b4350..2b083784b 100644 --- a/src/Spice86/Models/Debugging/VideoCardInfo.cs +++ b/src/Spice86/Models/Debugging/VideoCardInfo.cs @@ -2,11 +2,9 @@ namespace Spice86.Models.Debugging; using CommunityToolkit.Mvvm.ComponentModel; -using Spice86.Core.Emulator.Devices.Video.Registers; using Spice86.Core.Emulator.Devices.Video.Registers.CrtController; using Spice86.Core.Emulator.Devices.Video.Registers.General; using Spice86.Core.Emulator.Devices.Video.Registers.Graphics; -using Spice86.ViewModels; public partial class VideoCardInfo : ObservableObject { [ObservableProperty]