uasm 1.0.9+2.57

A library to build the UASM compiler, for usage in build scripts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

option flat:1

.code

	use32

	vbroadcastsd ymm2, [eax+8]
	vbroadcastsd ymm7, dword ptr myVector
	
.data

align 32
myVector __m256f <1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0>