| 5 | static u32 minAddr, maxAddr, currentAddr; |
| 6 | |
| 7 | void mappableInit(u32 addrMin, u32 addrMax) |
| 8 | { |
| 9 | minAddr = addrMin; |
| 10 | maxAddr = addrMax; |
| 11 | currentAddr = minAddr; |
| 12 | } |
| 13 | |
| 14 | static u32 mappableFindAddressWithin(u32 start, u32 end, u32 size) |
| 15 | { |
no outgoing calls
no test coverage detected