From 9eb9fe1961b4322d8f6ca4c8274515b83b4ffcde Mon Sep 17 00:00:00 2001 From: Jimmy Dansbo Date: Wed, 21 Jan 2026 20:52:39 +0100 Subject: [PATCH] Added documentation for the fill command in the debugger --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cfd2254..9b5b107 100644 --- a/README.md +++ b/README.md @@ -420,6 +420,7 @@ The debugger uses its own command line with the following syntax: |d %x|Change the code panel to view disassembly starting from the address %x.| |m %x|Change the data panel to view memory starting from the address %x.| |v %x|Display VERA RAM (VRAM) starting from address %x.| +|f %x %v [%n]|Fill memory address %x with value %v, optionally for %n number of bytes. In banked memory, the bank currently being displayed in the data panel is used, otherwise bank 0 |b %s %d|Changes the current memory bank for disassembly and data. The %s param can be either 'ram' or 'rom', the %d is the memory bank to display (but see NOTE below!).| |r %s %x|Changes the value in the specified register. Valid registers in the %s param are 'pc', 'a', 'b', 'c', 'd', 'k', 'dbr', 'x', 'y', and 'sp'. %x is the value to store in that register.|