Add R0 and R1 to clobbers of mulU24X24toH16 just to be on the safe side

pull/155/head
Alex Voinea 2022-02-21 18:28:01 +01:00
parent b497367950
commit 6f01167995
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ static inline uint16_t mulU24X24toH16(const uint32_t &longIn1, const uint32_t &l
"clr r1 \n\t"
: "=&r"(intRes)
: "d"(longIn1), "d"(longIn2)
: "r26", "r27");
: "r0", "r1", "r26", "r27");
#endif
return intRes;
}