Read from the 0xCXXX range of ports */
| 338 | |
| 339 | /* Read from the 0xCXXX range of ports */ |
| 340 | static uint8_t cxxx_read(const uint16_t pio, bool peek) { |
| 341 | (void)peek; |
| 342 | return cxxx.ports[pio]; |
| 343 | } |
| 344 | |
| 345 | /* Write to the 0xCXXX range of ports */ |
| 346 | static void cxxx_write(const uint16_t pio, const uint8_t byte, bool poke) { |
nothing calls this directly
no outgoing calls
no test coverage detected