Corey Osgood wrote:
Updated patch attached, thanks for the suggestions. I think I've done this right, can you have a look at it/test it? I can't test on hardware ATM because of some work I'm doing on ram init.
Oops, little mistake. This line:
- if (disable_bit == 0x4) enabled = 0;
should have been
+ if (disable_bit == 0x4) enabled = !enabled;
-Corey