From e9ca14e5c8922c7e95f7902cb28495896703c6c1 Mon Sep 17 00:00:00 2001 From: Clay McLeod <3411613+claymcleod@users.noreply.github.com> Date: Fri, 15 Jul 2022 13:46:00 -0500 Subject: [PATCH] docs: updates documentation to include correct path and full list of ISAs --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 293c092..9ba11ab 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ $ cd app core, we'll pick the `thumbv7em-none-eabihf` target. ``` console -$ tail -n6 .cargo/config +$ tail -n9 .cargo/config.toml ``` ``` toml @@ -81,6 +81,9 @@ $ tail -n6 .cargo/config # target = "thumbv7m-none-eabi" # Cortex-M3 # target = "thumbv7em-none-eabi" # Cortex-M4 and Cortex-M7 (no FPU) target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU) +# target = "thumbv8m.base-none-eabi" # Cortex-M23 +# target = "thumbv8m.main-none-eabi" # Cortex-M33 (no FPU) +# target = "thumbv8m.main-none-eabihf" # Cortex-M33 (with FPU) ``` 3. Enter the memory region information into the `memory.x` file.