about summary refs log tree commit diff stats
path: root/baremetal
diff options
context:
space:
mode:
Diffstat (limited to 'baremetal')
-rw-r--r--baremetal/ex2.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/baremetal/ex2.mu b/baremetal/ex2.mu
index 091cb1d0..4e0f20ae 100644
--- a/baremetal/ex2.mu
+++ b/baremetal/ex2.mu
@@ -15,12 +15,12 @@ fn main {
   {
     compare y, 0x300  # 768
     break-if->=
-    var color/ecx: int <- copy y
-    color <- and 0xff
     var x/edx: int <- copy 0
     {
       compare x, 0x400  # 1024
       break-if->=
+      var color/ecx: int <- copy x
+      color <- and 0xff
       pixel 0, x, y, color
       x <- increment
       loop