0 Members and 1 Guest are viewing this topic.
"beloved crystal" what would that mean? I have RC cars in mind,lol.
So the calculators are 16 bit, I'm assuming that is necessary for more advanced calculations and memory sizes? I'm still studying the 8-bit principle :P but I'm failing to understand what issues arise with reprogramming the flash memory. I've always been told that my flash drive will eventually go corrupt from use, but after the flash memory is reprogrammed, won't the remaining memory function as RAM with out any future corruption? Can you partition the flash memory!? Well, now I'm gonna have to find this bespoke "low memory" GB emulator, I am a little bit excited to play Links's Awakening. :)
Technically the calculators have an 8-bit processor, as they have an instruction word size of 8 bits and the general use registers are each 8 bits. But that's not really important.Regarding reprogramming Flash memory: In normal operation, writing to Flash can only be done by the operating system. However, even if this protection is disabled, you can't really use Flash memory as RAM. This is because you can't set bits in Flash by writing data normally, you can only reset bits. The only way to set bits is to order a sector erase, which destroys all data in a 64-kilobyte sector by setting all the bits in that sector. So if you wrote 0 to a byte in Flash memory, that byte could no longer hold anything except a 0 until you order a full sector erase.