diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-09-29 20:27:48 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-10-07 03:37:04 +0200 |
| commit | 7d4c9d2cb89818ef800718a4f462b34a21ee65cb (patch) | |
| tree | a4d151619ec0fc2558d6dc6d09e68408ecb1e44b | |
| parent | bb02dcf2d4c0ec446fb53516eea76087f8b7a3ed (diff) | |
| download | focaccia-qemu-7d4c9d2cb89818ef800718a4f462b34a21ee65cb.tar.gz focaccia-qemu-7d4c9d2cb89818ef800718a4f462b34a21ee65cb.zip | |
docs/devel/loads-stores: Stop mentioning cpu_physical_memory_write_rom()
Update the documentation after commit 3c8133f9737 ("Rename
cpu_physical_memory_write_rom() to address_space_write_rom()").
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20251002084203.63899-2-philmd@linaro.org>
| -rw-r--r-- | docs/devel/loads-stores.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/loads-stores.rst b/docs/devel/loads-stores.rst index 9471bac859..f9b565da57 100644 --- a/docs/devel/loads-stores.rst +++ b/docs/devel/loads-stores.rst @@ -474,7 +474,7 @@ This function is intended for use by the GDB stub and similar code. It takes a virtual address, converts it to a physical address via an MMU lookup using the current settings of the specified CPU, and then performs the access (using ``address_space_rw`` for -reads or ``cpu_physical_memory_write_rom`` for writes). +reads or ``address_space_write_rom`` for writes). This means that if the access is a write to a ROM then this function will modify the contents (whereas a normal guest CPU access would ignore the write attempt). |