Originally Posted by seanriddle
The only differences between the dumped file and the patent file are the 64th byte of each page. I guess they didn't license TI's method of detecting all 1s and forcing 0s to get all 64 counts.

Yeah, it supports 63 steps per page, program will get stuck at $3f unless it has a jump instruction.

int feed = ((m_pc >> 1 ^ m_pc) & 1) ? 0 : 0x20;
m_pc = feed | (m_pc >> 1 & 0x1f) | (m_pc & ~0x3f);