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
15
16
17

; v2.24 - EIP-related offsets in 64-bit

.data
string db 16 dup(0)

.code
start:
    mov string[0],'f'
    lea rcx,$
    mov string[1],'u'
    mov string[2],'t'
    mov string[3],'a'
    mov string[4],'r'
    mov string[5],'k'

    end start