-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Go To Function (Internal Debugger)
Signed-off-by: Maximilien Noal <[email protected]>
- Loading branch information
1 parent
1e19339
commit c4c51f7
Showing
5 changed files
with
70 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace Spice86.Models.Debugging; | ||
|
||
using CommunityToolkit.Mvvm.ComponentModel; | ||
|
||
using Spice86.Shared.Emulator.Memory; | ||
|
||
public partial class FunctionInfo : ObservableObject { | ||
[ObservableProperty] private string? _name; | ||
[ObservableProperty] private SegmentedAddress _address; | ||
|
||
public override string ToString() { | ||
return $"{Address}: {Name}"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters