Fix symbol size calculation in dht_logging

two-pixels-per-word
Luke Wren 2021-03-04 20:13:45 +00:00
rodzic 6bcf0e682d
commit 0ddc935866
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -108,7 +108,7 @@ void core1_main() {
for (uint component = 0; component < 3; ++component) { for (uint component = 0; component < 3; ++component) {
tmds_encode_1bpp( tmds_encode_1bpp(
(const uint32_t*)&framebuf[y * FRAME_WIDTH / 8 + component * PLANE_SIZE_BYTES], (const uint32_t*)&framebuf[y * FRAME_WIDTH / 8 + component * PLANE_SIZE_BYTES],
tmdsbuf + component * FRAME_WIDTH, tmdsbuf + component * FRAME_WIDTH / DVI_SYMBOLS_PER_WORD,
FRAME_WIDTH FRAME_WIDTH
); );
} }

Wyświetl plik

@ -1,5 +1,5 @@
set arch arm set arch arm
set confirm off targ rem localhost:3333
set disassemble-next-line on set disassemble-next-line on
target remote localhost:3333 set confirm off
file picodvi.elf file apps/sprite_bounce/sprite_bounce.elf