| 2642 | // . 80STORE && PAGE2 just means that writes occur to aux $400-7FF (and $2000-$3FFF if HIRES=1), not the entire aux 64K |
| 2643 | |
| 2644 | bool MemIsWriteAux(uint32_t memMode) |
| 2645 | { |
| 2646 | return (memMode & MF_AUXWRITE) || // Write to aux: $200-$BFFF |
| 2647 | ((memMode & MF_80STORE) && (memMode & MF_PAGE2)); // Write to aux: $400-$7FF and $2000-$3FFF |
| 2648 | } |
| 2649 | |
| 2650 | //=========================================================================== |
| 2651 |
no outgoing calls
no test coverage detected