uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation
.x64
.model flat

something STRUCT
	myproc dq ?
something ENDS

.code

myproc proto

mov [(type something.myproc) ptr [rax]], rax

a db 0

myproc PROC
  RET
myproc ENDP

end