; Mas Asm, written by Jared Bruni
; www.lostsidedead.com



mas object Jared ; name of mas object
{


variables { ; variables code block

var& x := 0
var$ filedata 
var& ax := 1
var& bx := 2
var& cx := 3
var& dx := 4
var& ex := 5
var& fx := 6
var& gx := 7
var& y  := 2
} ; end variables

constructor { ; constructor code block

start:

add x,10
add ax,x
sub x,y
div x,y
mul x,y

} ; end constructor

deconstructor { ; deconstructor code block


} ; end deconstructor


proc update  { ; update procedure

} ; end of update

proc loadfiles
{

}


}; end of object
