repo.or.cz
/
nasm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
preproc.c: Make %substr robust
[nasm.git]
/
test
/
vmread.asm
blob
551c71a17f9bfb56136d8d117793a5c5c8b682c7
1
;Testname=test; Arguments=-fbin -ovmread.bin; Files=stdout stderr vmread.bin
2
3
bits
32
4
vmread
dword
[
0
],
eax
5
vmwrite
eax
,
dword
[
0
]
6
vmread
[
0
],
eax
7
vmwrite
eax
, [
0
]
8
9
bits
64
10
vmread
qword
[
0
],
rax
11
vmwrite rax
,
qword
[
0
]
12
vmread
[
0
],
rax
13
vmwrite rax
, [
0
]
14
15
%
ifdef ERROR
16
bits
32
17
vmread
qword
[
0
],
eax
18
vmwrite
eax
,
qword
[
0
]
19
20
bits
64
21
vmread
dword
[
0
],
eax
22
vmwrite
eax
,
dword
[
0
]
23
24
vmread
qword
[
0
],
eax
25
vmwrite
eax
,
qword
[
0
]
26
%
endif