From 45078474676f7fb50fc7a773f3a970f8e5c4f28a Mon Sep 17 00:00:00 2001 From: Stephan Date: Sun, 9 Jul 2023 15:10:01 +0200 Subject: [PATCH] Change README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6cae4ed..7e33092 100644 --- a/README.md +++ b/README.md @@ -93,8 +93,8 @@ An alternative to ```xc32-bin2hex``` is ```pic32-bin2hex```, which is part of th To link the final application image, three linker script files are used -* a main file containing the memory map of the used device (needs to be adapted -to the Flash memory size and the RAM size -* a file `pic32_common.ld` included by the main file +* a file `memory.x` containing the memory map of the used device (needs to be adapted +to the Flash memory size and the SRAM size). * a file `device.x` contained in the peripheral access crate that provides -symbolic names for the interrupt vectors; also included by the main file +symbolic names for the interrupt vectors +* a main linker script `link.x`, which is part of the `mips-rt` crate. This main linker scripts sources the contents of `memory.x` and `device.x`.