How to unlock CRTC registers
-
- Posts: 6
- Joined: Wed Sep 13, 2023 10:52 pm
How to unlock CRTC registers
I looked osdev for that info but didnt found anything about it. So, how to unlock (and lock) CRTC registers?
-
- Member
- Posts: 5501
- Joined: Mon Mar 25, 2013 7:01 pm
Re: How to unlock CRTC registers
Bit 7 of the Vertical Retrace End Register (index 0x11) is the write protect bit. Clear that bit to remove the write protection. You can read more about it in IBM's VGA documentation and in other VGA resources linked in the wiki.
-
- Posts: 6
- Joined: Wed Sep 13, 2023 10:52 pm
Re: How to unlock CRTC registers
Thanks so much!Octocontrabass wrote: ↑Tue Aug 13, 2024 9:44 am Bit 7 of the Vertical Retrace End Register (index 0x11) is the write protect bit. Clear that bit to remove the write protection. You can read more about it in IBM's VGA documentation and in other VGA resources linked in the wiki.