1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Added TODO.

This commit is contained in:
Thomas Harte 2018-10-10 22:17:17 -04:00
parent 062b2ae8d3
commit 9a933993f5

View File

@ -529,6 +529,17 @@ uint8_t TMS9918::get_current_line() {
return static_cast<uint8_t>(source_row);
}
/*
TODO: Full proper sequence of current lines:
NTSC 256x192 00-DA, D5-FF
NTSC 256x224 00-EA, E5-FF
NTSC 256x240 00-FF, 00-06
PAL 256x192 00-F2, BA-FF
PAL 256x224 00-FF, 00-02, CA-FF
PAL 256x240 00-FF, 00-0A, D2-FF
*/
uint8_t TMS9918::get_register(int address) {
write_phase_ = false;