Revert "allow drawing all pixels"

It causes us to run out of memory during tests.
This commit is contained in:
Kartik K. Agaram 2021-04-18 23:25:26 -07:00
parent ad46997f95
commit 53b56c67a9
1 changed files with 3 additions and 2 deletions

View File

@ -52,9 +52,10 @@ fn initialize-screen _screen: (addr screen), width: int, height: int {
tmp <- multiply width
populate data-addr, tmp
}
# allocate space for 16 pixels per 16x8 character. So one column of pixels
# per character.
var pixels-ah/ecx: (addr handle stream pixel) <- get screen, pixels
tmp <- shift-left 3/log2-font-width
tmp <- shift-left 4/log2-font-height
tmp <- shift-left 4
populate-stream pixels-ah, tmp
# screen->cursor-x = 0
dest <- get screen, cursor-x