From 4a05c4243d038808ec1c820b0c0009cdb563d915 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Wed, 13 Apr 2016 22:48:07 +0300 Subject: [PATCH] Corrected description for the breakpoint command --- Core/debugger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/debugger.c b/Core/debugger.c index ba1bf14..acb7331 100644 --- a/Core/debugger.c +++ b/Core/debugger.c @@ -606,7 +606,7 @@ static const debugger_command_t commands[] = { {"registers", 1, registers, "Print values of processor registers and other important registers"}, {"cartridge", 2, mbc, "Displays information about the MBC and cartridge"}, {"mbc", 3, mbc, NULL}, - {"breakpoint", 1, breakpoint, "Move the breakpoint to a new position"}, + {"breakpoint", 1, breakpoint, "Add a new breakpoint at the specified address/expression"}, {"list", 1, list, "List all set breakpoints"}, {"delete", 2, delete, "Delete a breakpoint by its address, or all breakpoints"}, {"print", 1, print, "Evaluate and print an expression"},