1
0
mirror of synced 2026-01-14 15:35:25 +00:00

don't need the extra 256 KiB

This commit is contained in:
Romain Dolbeau 2021-10-09 11:19:47 +02:00
parent 04612ea864
commit e31ea588f1

View File

@ -28,7 +28,7 @@ cg3_timings = {
}
def cg3_rounded_size(hres, vres):
return int(1048576 * ceil(((hres * vres) + 262144) / 1048576))
return int(1048576 * ceil(((hres * vres) + 0) / 1048576))
class VideoFrameBuffer256c(Module, AutoCSR):
"""Video FrameBuffer256c"""