This commit is contained in:
Kartik K. Agaram 2021-06-12 17:49:48 -07:00
parent 9b5b3bccd1
commit 85bcf050e7

View File

@ -259,14 +259,13 @@ fn render-screen screen: (addr screen), _target-screen: (addr screen), xmin: int
var target-screen/esi: (addr screen) <- copy _target-screen
var to-y/edi: int <- copy ymin
# text data
{
var width/ebx: (addr int) <- get target-screen, width
var height/edx: (addr int) <- get target-screen, height
var from-y/ecx: int <- copy 0
{
compare from-y, *height
break-if->=
var width/edx: (addr int) <- get target-screen, width
var from-x/ebx: int <- copy 0
var from-x/edx: int <- copy 0
var to-x/eax: int <- copy xmin
{
compare from-x, *width
@ -280,7 +279,6 @@ fn render-screen screen: (addr screen), _target-screen: (addr screen), xmin: int
to-y <- increment
loop
}
}
# pixel data
{
# screen top left pixels x y width height