blob: cff76cabc382fe0d7fd70a9c07ac2b3c7ea7eaa1 (
plain)
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
|
--- xasm.d.orig 2019-10-27 07:30:11.264959439 +0100
+++ xasm.d 2019-10-27 07:34:17.302298521 +0100
@@ -2929,16 +2929,16 @@
writeln(TITLE);
if (exitCode != 0) {
write(
- "Syntax: xasm source [options]\n"
- "/c Include false conditionals in listing\n"
- "/d:label=value Define a label\n"
- "/i Don't list included files\n"
- "/l[:filename] Generate listing\n"
- "/o:filename Set object file name\n"
- "/M Print Makefile rule\n"
- "/p Print absolute paths in listing and error messages\n"
- "/q Suppress info messages\n"
- "/t[:filename] List label table\n"
+ "Syntax: xasm source [options]\n" ~
+ "/c Include false conditionals in listing\n" ~
+ "/d:label=value Define a label\n" ~
+ "/i Don't list included files\n" ~
+ "/l[:filename] Generate listing\n" ~
+ "/o:filename Set object file name\n" ~
+ "/M Print Makefile rule\n" ~
+ "/p Print absolute paths in listing and error messages\n" ~
+ "/q Suppress info messages\n" ~
+ "/t[:filename] List label table\n" ~
"/u Warn of unused labels\n");
return exitCode;
}
|