PFW-1530 minor optimisation
Don't inline WriteRegister Change in memory: Flash: -12 bytes SRAM: 0 bytes
This commit is contained in:
parent
1cda696e14
commit
efd85110a3
|
|
@ -174,7 +174,7 @@ bool MMU2::ReadRegisterInner(uint8_t address) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool MMU2::WriteRegister(uint8_t address, uint16_t data) {
|
bool __attribute__((noinline)) MMU2::WriteRegister(uint8_t address, uint16_t data) {
|
||||||
if (!WaitForMMUReady())
|
if (!WaitForMMUReady())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue