diff options
author | Mark Zhuang <mark.zhuang@spacemit.com> | 2023-04-10 10:57:55 +0800 |
---|---|---|
committer | Antonio Borneo <borneo.antonio@gmail.com> | 2023-04-14 15:17:08 +0000 |
commit | 95c27731d4f76c0554147030075ab476d68f9f83 (patch) | |
tree | 54c224bd4b0efa6dc4882e2dc6ff5edeac9ed368 | |
parent | 1e6df1675ccea95d99d767e6d2b9a735c8ee2a36 (diff) | |
download | riscv-openocd-95c27731d4f76c0554147030075ab476d68f9f83.zip riscv-openocd-95c27731d4f76c0554147030075ab476d68f9f83.tar.gz riscv-openocd-95c27731d4f76c0554147030075ab476d68f9f83.tar.bz2 |
flash/rsl10: fix typo
Change-Id: I11af37309fe4684fcb340a00fcc7b2096b8dad76
Signed-off-by: Mark Zhuang <mark.zhuang@spacemit.com>
Reviewed-on: https://review.openocd.org/c/openocd/+/7584
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
-rw-r--r-- | contrib/loaders/flash/rsl10/rom_launcher.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/loaders/flash/rsl10/rom_launcher.S b/contrib/loaders/flash/rsl10/rom_launcher.S index 70f000e..aafedfb 100644 --- a/contrib/loaders/flash/rsl10/rom_launcher.S +++ b/contrib/loaders/flash/rsl10/rom_launcher.S @@ -21,7 +21,7 @@ .global _start _start: launch_program_in_rom: - // variables are already set, addres to jump is in r3 + // variables are already set, address to jump is in r3 blx r3 exit: // Wait for OpenOCD |