MasAsm Script MAS Byte code Assembler 
written by Jared Bruni
www.LostSideDead.com
------------------------------

to  use simply go to the command line and go

masasm sourcefile.masasm

instruction list
------------
mov 
print
input 
inc 
dec 
add 
sub
mul
div
and
or
xor
not
cmp
jmp
jne
je
jge
jg
jl
jle

--
body of mas program

--


mas ProgramName {

var {

var& x := 0
var# f := 0

}

begin {

start:
print "hello world\n"
print "the value of x := "
print x



}

}



