about summary refs log blame commit diff stats
path: root/tutorial/task15.mu
blob: a53c24544719f74ad99463713d2994dae7f66476 (plain) (tree)


















                                        
fn main screen: (addr screen) {
  var y/eax: int <- copy 0
  {
    compare y, 0x300/screen-height=768
    break-if->=
    var x/edx: int <- copy 0
    {
      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
    }
    y <- increment
    loop
  }
}