fix gfx2.fill() vera CTRL corruption

This commit is contained in:
Irmen de Jong 2024-09-11 19:10:32 +02:00
parent 255c5bfaca
commit d34015eec5
2 changed files with 1 additions and 2 deletions

View File

@ -759,6 +759,7 @@ skip:
cx16.VERA_CTRL = 1
cx16.VERA_ADDR_H = cx16.r1L
cx16.VERA_ADDR = cx16.r0
cx16.VERA_CTRL = 0
}
sub fill_scanline_left_8bpp() -> bool {

View File

@ -3,8 +3,6 @@ TODO
IR: add codegen for containmentcheck literal + test that it actually works (positive and negative)
Fix testgfx2 screen text being uppercase (should be upper+lowercased)
diskio.internal_f_tell gets included in the assembly even though f_tell is never called ??? (when using another routine from diskio...)
IR: Improve codegen for for loops downto 0. (BPL if <=127 etc like 6502 codegen?)