From 7291aa2ffc33af133d95f94191e8bb8359b452e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ann=F0=9F=90=B8?= Date: Thu, 6 Mar 2025 14:53:46 +0100 Subject: [PATCH] rp2350/pad_checksum: fix set cpu --- src/rp2350/boot_stage2/pad_checksum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2350/boot_stage2/pad_checksum b/src/rp2350/boot_stage2/pad_checksum index 2cbe1ade2..772220ae9 100755 --- a/src/rp2350/boot_stage2/pad_checksum +++ b/src/rp2350/boot_stage2/pad_checksum @@ -44,7 +44,7 @@ odata = idata + bytes(args.pad - len(idata)) with open(args.ofile, "w") as ofile: ofile.write("// Padded and checksummed version of: {}\n\n".format(args.ifile)) if args.arch == "arm": - ofile.write(".cpu cortex-m0plus\n") + ofile.write(".cpu cortex-m33\n") ofile.write(".thumb\n\n") ofile.write(".section .boot2, \"ax\"\n\n") ofile.write(".global __boot2_entry_point\n")