Remove register keyword from all the function arguments.

Adds no value.
This commit is contained in:
René van Dorst
2026-08-26 21:52:31 +02:00
parent 45d0aac118
commit bf0bea1edd
10 changed files with 45 additions and 47 deletions
+1 -1
View File
@@ -213,7 +213,7 @@ uint8_t flash_read_status(void)
* Reads bulk data of length len from the flash memory starging at address src
* and writes the data into a buffer pointed to by dst in XMEM
*/
void flash_read_bulk(register __xdata uint8_t *dst, __xdata uint32_t src, register uint16_t len)
void flash_read_bulk(__xdata uint8_t *dst, __xdata uint32_t src, uint16_t len)
{
short status;
do {