Mercurial > repos > blastem
comparison vdp.c @ 2509:1102372feaee
Remove old TODO
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Tue, 27 Aug 2024 20:52:37 -0700 |
parents | caf92f1b7b76 |
children | 0a22c1901492 |
comparison
equal
deleted
inserted
replaced
2508:caf92f1b7b76 | 2509:1102372feaee |
---|---|
1589 { | 1589 { |
1590 case 0: | 1590 case 0: |
1591 pixel = context->regs[REG_BG_COLOR] & 0x3F; | 1591 pixel = context->regs[REG_BG_COLOR] & 0x3F; |
1592 for (int i = 0; i < 16; i++) | 1592 for (int i = 0; i < 16; i++) |
1593 { | 1593 { |
1594 *(dst++) = pixel; //TODO: confirm this on hardware | 1594 *(dst++) = pixel; //Behavior confirmed on hardware by vladikcomper |
1595 *(debug_dst++) = DBG_SRC_BG; | 1595 *(debug_dst++) = DBG_SRC_BG; |
1596 } | 1596 } |
1597 break; | 1597 break; |
1598 case 1: { | 1598 case 1: { |
1599 uint8_t *sprite_buf = context->linebuf + col * 8; | 1599 uint8_t *sprite_buf = context->linebuf + col * 8; |