()
| 16 | } |
| 17 | |
| 18 | func ClearMem() { |
| 19 | for i := uint16(0); i < 65535; i++ { |
| 20 | setMemoryLocation2(MEMORY, i, 0x0000) |
| 21 | } |
| 22 | setMemoryLocation2(MEMORY, 0xFFFF, 0x0000) |
| 23 | } |
| 24 | |
| 25 | func TestIARIncrementedOnEveryCycle(t *testing.T) { |
| 26 | ClearMem() |
no test coverage detected