tutorial: remove an unnecessary detail

This commit is contained in:
Kartik K. Agaram 2021-11-16 07:27:52 -08:00
parent a79de8773d
commit b43e72b704
2 changed files with 0 additions and 2 deletions

View File

@ -587,7 +587,6 @@ fn main screen: (addr screen) {
compare x, 0x400/screen-width=1024
break-if->=
var color/ecx: int <- copy x
color <- and 0xff
pixel screen x, y, color
x <- increment
loop

View File

@ -8,7 +8,6 @@ fn main screen: (addr screen) {
compare x, 0x400/screen-width=1024
break-if->=
var color/ecx: int <- copy x
color <- and 0xff
pixel screen x, y, color
x <- increment
loop