SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 3ef8fab7c42fc254695dd911030356f3c3f4c822 parent 153cdb2e112da299866ca43f722e6f40ac4671a4 Author: Lior Halphon <LIJI32@gmail.com> Date: Fri, 23 Feb 2024 22:35:11 +0200 Fix typo Diffstat:
| M | Core/debugger.c | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Core/debugger.c b/Core/debugger.c @@ -2149,14 +2149,14 @@ static const debugger_command_t commands[] = { {"x", 1, }, /* Alias */ {"disassemble", 1, disassemble, "Disassemble instructions at address", "<expression>", "count", .argument_completer = symbol_completer}, {"breakpoint", 1, breakpoint, "Add a new breakpoint at the specified address/expression or range. " - "Ranges are exlusive by default, unless \"inclusive\" is used. " + "Ranges are exclusive by default, unless \"inclusive\" is used. " "If the j modifier is used, the breakpoint will occur just before " "jumping to the target.", "<expression> [to <end expression> [inclusive]] [if <condition expression>]", "j", .argument_completer = symbol_completer, .modifiers_completer = j_completer}, {"delete", 2, delete, "Delete a breakpoint by its identifier, or all breakpoints", "[<breakpoint id>]"}, {"watch", 1, watch, "Add a new watchpoint at the specified address/expression or range. " - "Ranges are exlusive by default, unless \"inclusive\" is used. " + "Ranges are exclusive by default, unless \"inclusive\" is used. " "The default watchpoint type is write-only.", "<expression> [to <end expression> [inclusive]] [if <condition expression>]", "(r|w|rw)", .argument_completer = symbol_completer, .modifiers_completer = rw_completer
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.