1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
[
{
"description": "Test __OUTPUT_FORMAT__ directive (bin)",
"id": "nasmformat",
"format": "bin",
"source": "nasmformat.asm",
"option": "-Ox",
"target": [
{ "output": "nasmformat.bin" }
]
},
{
"description": "Test __OUTPUT_FORMAT__ directive (elf32)",
"ref": "nasmformat",
"format": "elf32",
"target": [
{ "output": "nasmformat-elf32.o" }
]
},
{
"description": "Test __OUTPUT_FORMAT__ directive (elf64)",
"ref": "nasmformat",
"format": "elf64",
"target": [
{ "output": "nasmformat-elf64.o" }
]
},
{
"description": "Test __OUTPUT_FORMAT__ directive (macho32)",
"ref": "nasmformat",
"format": "macho32",
"target": [
{ "output": "nasmformat-macho32.o" }
]
},
{
"description": "Test __OUTPUT_FORMAT__ directive (macho64)",
"ref": "nasmformat",
"format": "macho64",
"target": [
{ "output": "nasmformat-macho64.o" }
]
}
]
|