| 24 | } flash_cache_set_t; |
| 25 | |
| 26 | typedef struct flash_state { |
| 27 | uint64_t uniqueID; |
| 28 | uint32_t waitStates; |
| 29 | uint32_t mappedBytes; |
| 30 | uint32_t mask; |
| 31 | uint32_t lastCacheLine; |
| 32 | uint32_t commandAddress; |
| 33 | uint32_t commandLength; |
| 34 | uint8_t command[0x10]; |
| 35 | uint8_t commandStatus[4]; |
| 36 | uint8_t maskReg[4]; |
| 37 | flash_cache_set_t cacheTags[FLASH_CACHE_SETS]; |
| 38 | uint8_t ports[0x100]; |
| 39 | } flash_state_t; |
| 40 | |
| 41 | extern flash_state_t flash; |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected