Welcome to mirror list, hosted at ThFree Co, Russian Federation.

en.txt « utf-8 « translations « resources « contrib - github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84ba95add1bab0d402d6496061b3195bee36dd51 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
:CONFIG_FULLSCREEN
Start directly in fullscreen.
Run INTRO and see Special Keys for window control hotkeys.
.
:CONFIG_DISPLAY
Number of display to use; values depend on OS and user settings.
.
:CONFIG_FULLRESOLUTION
What resolution to use for fullscreen: 'original', 'desktop'
or a fixed size (e.g. 1024x768).
.
:CONFIG_WINDOWRESOLUTION
Set window size when running in windowed mode:
  default:   Select the best option based on your
             environment and other settings.
  small, medium, or large (or s, m, l):
             Size the window relative to the desktop.
  <custom>:  Scale the window to the given dimensions in
             WxH format. For example: 1024x768.
             Scaling is not performed for output=surface.
.
:CONFIG_VIEWPORT_RESOLUTION
Set the viewport size (drawable area) within the window/screen:
  fit:       Fit the viewport to the available window/screen (default).
  <custom>:  Limit the viewport within to a custom resolution or percentage of
             the desktop. Specified in WxH, N%, N.M%. Examples: 960x720 or 50%
.
:CONFIG_WINDOW_POSITION
Set initial window position when running in windowed mode:
  auto:      Let the window manager decide the position.
  <custom>:  Set window position in X,Y format. For example: 250,100
             0,0 is the top-left corner of the screen.
.
:CONFIG_WINDOW_DECORATIONS
Controls whether to display window decorations in windowed mode.
.
:CONFIG_TRANSPARENCY
Set the transparency of the DOSBox Staging screen.
From 0 (no transparency) to 90 (high transparency).
.
:CONFIG_MAX_RESOLUTION
This setting has been renamed to viewport_resolution.
.
:CONFIG_HOST_RATE
Set the host's refresh rate:
  auto:      Use SDI rates, or VRR rates when fullscreen on a high-refresh
             display.
  sdi:       Use serial device interface (SDI) rates, without further
             adjustment.
  vrr:       Deduct 3 Hz from the reported rate (best-practice for VRR
             displays).
  <custom>:  Specify a custom rate as a whole or decimal value greater than
             23.000.
.
:CONFIG_VSYNC
Synchronize with display refresh rate if supported. This can
reduce flickering and tearing, but may also impact performance.
.
:CONFIG_VSYNC_SKIP
Number of microseconds to allow rendering to block before skipping the next
frame. 0 disables this and will always render.
.
:CONFIG_PRESENTATION_MODE
Optionally select the frame presentation mode:
  auto:  Intelligently time and drop frames to prevent
         emulation stalls, based on host and DOS frame rates.
  cfr:   Always present DOS frames at a constant frame rate.
  vfr:   Always present changed DOS frames at a variable frame rate.
.
:CONFIG_OUTPUT
What video system to use for output.
.
:CONFIG_TEXTURE_RENDERER
Choose a renderer driver when using a texture output mode.
Use texture_renderer=auto for an automatic choice.
.
:CONFIG_CAPTURE_MOUSE
Choose a mouse control method:
   onclick:        Capture the mouse when clicking any button in the window.
   onstart:        Capture the mouse immediately on start.
   seamless:       Let the mouse move seamlessly; captures only with
                   middle-click or hotkey.
   nomouse:        Hide the mouse and don't send input to the game.
Choose how middle-clicks are handled (second parameter):
   middlegame:     Middle-clicks are sent to the game.
   middlerelease:  Middle-click will release the captured mouse, and also
                   capture when seamless.
Defaults (if not present or incorrect): seamless middlerelease
.
:CONFIG_SENSITIVITY
Mouse sensitivity. The optional second parameter specifies vertical sensitivity
(e.g. 100,-50).
.
:CONFIG_RAW_MOUSE_INPUT
Enable this setting to bypass your operating system's mouse
acceleration and sensitivity settings. This works in
fullscreen or when the mouse is captured in window mode.
.
:CONFIG_WAITONERROR
Keep the console open if an error has occurred.
.
:CONFIG_PRIORITY
Priority levels to apply when active and inactive, respectively. 
   auto:  Let the host operating system manage the priority (valid for both).
Default is: 'auto auto'
.
:CONFIG_MUTE_WHEN_INACTIVE
Mute the sound when the window is inactive.
.
:CONFIG_PAUSE_WHEN_INACTIVE
Pause emulation when the window is inactive.
.
:CONFIG_MAPPERFILE
File used to load/save the key/event mappings.
Pre-configured maps are bundled in the 'resources/mapperfiles' directory.
They can be loaded by name, for example: mapperfile = xbox/xenon2.map
Note: the -resetmapper commandline flag only deletes the default mapperfile.
.
:CONFIG_SCREENSAVER
Use 'allow' or 'block' to override the SDL_VIDEO_ALLOW_SCREENSAVER
environment variable (which usually blocks the OS screensaver
while the emulator is running).
.
:CONFIG_LANGUAGE
Select a language to use: de, en, es, fr, it, nl, pl, and ru
Notes: This setting will override the 'LANG' environment, if set.
       The 'resources/translations' directory bundled with the executable holds
       these files. Please keep it along-side the executable to support this
       feature.
.
:CONFIG_MACHINE
The type of machine DOSBox tries to emulate.
.
:CONFIG_CAPTURES
Directory where things like wave, midi, screenshot get captured.
.
:CONFIG_MEMSIZE
Amount of memory DOSBox has in megabytes.
This value is best left at its default to avoid problems with some games,
though few games might require a higher value.
There is generally no speed advantage when raising this value.
.
:CONFIG_MCB_FAULT_STRATEGY
How software-corrupted memory chain blocks should be handled:
  deny:    Quit (and report) when faults are detected (default).
  repair:  Repair (and report) faults using adjacent chain blocks.
  report:  Report faults but otherwise proceed as-is.
  allow:   Allow faults to go unreported (hardware behavior).
The default (deny) is recommended unless a game is failing with MCB corruption
errors.
.
:CONFIG_VMEMSIZE
Video memory in MiB (1-8) or KiB (256 to 8192). 'auto' uses the default per
video adapter.
.
:CONFIG_DOS_RATE
Customize the emulated video mode's frame rate, in Hz:
default:  The DOS video mode determines the rate (recommended).
host:     Match the DOS rate to the host rate (see 'host_rate' setting).
<value>:  Sets the rate to an exact value, between 24.000 and 1000.000 (Hz).
We recommend the 'default' rate; otherwise test and set on a per-game basis.
.
:CONFIG_VESA_MODES
Controls the selection of VESA 1.2 and 2.0 modes offered:
  compatible   A tailored selection that maximizes game compatibility.
               This is recommended along with 4 or 8 MB of video memory.
  halfline     Supports the low-resolution halfline VESA 2.0 mode used by
               Extreme Assault. Use only if needed, as it's not S3 compatible.
  all          Offers all modes for a given video memory size, however
               some games may not use them properly (flickering) or may need
               more system memory (mem = ) to use them.
.
:CONFIG_SPEED_MODS
Permit changes known to improve performance. Currently no games are known
to be affected by this. Please file a bug with the project if you find a
game that fails when this is set to true so we will list them here.
.
:CONFIG_AUTOEXEC_SECTION
How autoexec sections are handled from multiple config files.
join      : combines them into one big section (legacy behavior).
overwrite : use the last one encountered, like other conf settings.
.
:CONFIG_AUTOMOUNT
Mounts 'drives/[c]' directories as drives on startup, where [c] is
a lower-case drive letter from a to y.  The 'drives' folder can be
provided relative to the current directory or via built-in resources.
Mount settings can be optionally provided using a [c].conf file along-
-side the drive's directory, with content as follows:
  [drive]
  type    = dir, overlay, floppy, or cdrom
  label   = custom_label
  path    = path-specification, ie: path = %%path%%;c:\tools
  override_drive = mount the directory to this drive instead (default empty)
  verbose = true or false
.
:CONFIG_STARTUP_VERBOSITY
Controls verbosity prior to displaying the program:
Verbosity   | Welcome | Early stdout
high        |   yes   |    yes
low         |   no    |    yes
quiet       |   no    |    no
auto        | 'low' if exec or dir is passed, otherwise 'high'
.
:CONFIG_FRAMESKIP
How many frames DOSBox skips before drawing one.
.
:CONFIG_ASPECT
Scales the vertical resolution to produce a 4:3 display aspect
ratio, matching that of the original standard-definition monitors
for which the majority of DOS games were designed. This setting
only affects video modes that use non-square pixels, such as
320x200 or 640x400; where as square-pixel modes, such as 640x480
and 800x600, will be displayed as-is.
.
:CONFIG_MONOCHROME_PALETTE
Select default palette for monochrome display.
Works only when emulating hercules or cga_mono.
You can also cycle through available colours using F11.
.
:CONFIG_CGA_COLORS
Sets the interpretation of CGA RGBI colors. Affects all machine types capable
of displaying CGA or better graphics. Built-in presets:
  default:       The canonical CGA palette, as emulated by VGA adapters
                 (default).
  tandy [BL]:    Emulation of an idealised Tandy monitor with adjustable
                 Brown Level (0 - red, 50 - brown, 100 - dark yellow;
                 defaults to 50).
  tandy-warm:    Emulation of the actual color output of an unknown Tandy
                 monitor.
  ibm5153 [C]:   Emulation of the actual color output of an IBM 5153 monitor
                 with a unique Contrast control that dims non-bright colors
                 only (0 to 100; defaults to 100).
  agi-amiga-v1, agi-amiga-v2, agi-amiga-v3:
                 Palettes used by the Amiga ports of Sierra AGI games
                 (see the manual for further details).
  agi-amigaish:  A mix of EGA and Amiga colors used by the Sarien
                 AGI-interpreter.
  scumm-amiga:   Palette used by the Amiga ports of LucasArts EGA games.
  colodore:      Commodore 64 inspired colors based on the Colodore palette.
  colodore-sat:  Colodore palette with 20% more saturation.
  dga16:         A modern take on the canonical CGA palette with dialed back
                 contrast.
You can also set custom colors by specifying 16 space or comma separated color
values, either as 3 or 6-digit hex codes (e.g. #f00 or #ff0000 for full red),
or decimal RGB triplets (e.g. (255, 0, 255) for magenta). The 16 colors are
ordered as follows:
black, blue, green, cyan, red, magenta, brown, light-grey, dark-grey,
light-blue, light-green, light-cyan, light-red, light-magenta, yellow,
and white.
Their default values, shown here in 6-digit hex code format, are:
#000000 #0000aa #00aa00 #00aaaa #aa0000 #aa00aa #aa5500 #aaaaaa #555555
#5555ff #55ff55 #55ffff #ff5555 #ff55ff #ffff55 and #ffffff, respectively.
.
:CONFIG_SCALER
Scaler used to enlarge/enhance low resolution modes.
If 'forced' is appended, then the scaler will be used even if
the result might not be desired.
Note that some scalers may use black borders to fit the image
within your configured display resolution. If this is
undesirable, try either a different scaler or enabling
fullresolution output.
.
:CONFIG_GLSHADER
Either 'none' or a GLSL shader name. Works only with
OpenGL output.  Can be either an absolute path, a file
in the 'glshaders' subdirectory of the DOSBox
configuration directory, one of the bundled shaders:
advinterp2x, advinterp3x, advmame2x, advmame3x,
crt-easymode-flat, crt-fakelottes-flat, rgb2x, rgb3x,
scan2x, scan3x, tv2x, tv3x, sharp (default).
.
:CONFIG_COMPOSITE
Enable composite mode on start. 'auto' lets the program decide.
Note: Fine-tune the settings below (ie: hue) using the composite hotkeys.
      Then read the new settings from your console and enter them here.
.
:CONFIG_ERA
Era of composite technology. When 'auto', PCjr uses new and CGA/Tandy use old.
.
:CONFIG_HUE
Appearance of RGB palette. For example, adjust until sky is blue.
.
:CONFIG_SATURATION
Intensity of colors, from washed out to vivid.
.
:CONFIG_CONTRAST
Ratio between the dark and light area.
.
:CONFIG_BRIGHTNESS
Luminosity of the image, from dark to light.
.
:CONFIG_CONVERGENCE
Convergence of subpixel elements, from blurry to sharp (CGA and Tandy-only).
.
:CONFIG_CORE
CPU Core used in emulation. auto will switch to dynamic if available and
appropriate.
.
:CONFIG_CPUTYPE
CPU Type used in emulation. auto is the fastest choice.
.
:CONFIG_CYCLES
Number of instructions DOSBox tries to emulate each millisecond.
Setting this value too high results in sound dropouts and lags.
Cycles can be set in 3 ways:
  'auto'          tries to guess what a game needs.
                  It usually works, but can fail for certain games.
  'fixed #number' will set a fixed number of cycles. This is what you usually
                  need if 'auto' fails (Example: fixed 4000).
  'max'           will allocate as much cycles as your computer is able to
                  handle.
.
:CONFIG_CYCLEUP
Number of cycles added or subtracted with speed control hotkeys.
Run INTRO and see Special Keys for list of hotkeys.
.
:CONFIG_CYCLEDOWN
Setting it lower than 100 will be a percentage.
.
:CONFIG_NOSOUND
Enable silent mode, sound is still emulated though.
.
:CONFIG_RATE
Mixer sample rate.
.
:CONFIG_BLOCKSIZE
Mixer block size; larger values might help with sound stuttering but sound will
also be more lagged.
.
:CONFIG_PREBUFFER
How many milliseconds of sound to render on top of the blocksize; larger values
might help with sound stuttering but sound will also be more lagged.
.
:CONFIG_NEGOTIATE
Let the system audio driver negotiate (possibly) better rate and blocksize
settings.
.
:CONFIG_COMPRESSOR
Enable the auto-leveling compressor on the master channel to prevent clipping
of the audio output:
  off:  Disable compressor.
  on:   Enable compressor (default).
.
:CONFIG_CROSSFEED
Set crossfeed globally on all stereo channels for headphone listening:
  off:         No crossfeed (default).
  on:          Enable crossfeed (at strength 40).
  <strength>:  Set crossfeed strength from 0 to 100, where 0 means no crossfeed
               (off) and 100 full crossfeed (effectively turning stereo content
               into mono).
Note: You can set per-channel crossfeed via mixer commands.
.
:CONFIG_REVERB
Enable reverb globally to add a sense of space to the sound:
  off:     No reverb (default).
  on:      Enable reverb (medium preset).
  tiny:    Simulates the sound of a small integrated speaker in a room;
           specifically designed for small-speaker audio systems
           (PC Speaker, Tandy, PS/1 Audio, and LPT DAC devices).
  small:   Adds a subtle sense of space; good for games that use a single
           synth channel (typically OPL) for both music and sound effects.
  medium:  Medium room preset that works well with a wide variety of games.
  large:   Large hall preset recommended for games that use separate
           channels for music and digital audio.
  huge:    A stronger variant of the large hall preset; works really well
           in some games with more atmospheric soundtracks.
Note: You can fine-tune per-channel reverb levels via mixer commands.
.
:CONFIG_CHORUS
Enable chorus globally to add a sense of stereo movement to the sound:
  off:     No chorus (default).
  on:      Enable chorus (normal preset).
  light:   A light chorus effect (especially suited for
           synth music that features lots of white noise.)
  normal:  Normal chorus that works well with a wide variety of games.
  strong:  An obvious and upfront chorus effect.
Note: You can fine-tune per-channel chorus levels via mixer commands.
.
:CONFIG_MIDIDEVICE
Device that will receive the MIDI data (from the emulated MIDI
interface - MPU-401). Choose one of the following:
'fluidsynth', to use the built-in MIDI synthesizer. See the
       [fluidsynth] section for detailed configuration.
'mt32', to use the built-in Roland MT-32 synthesizer.
       See the [mt32] section for detailed configuration.
'auto', to use the first working external MIDI player. This
       might be a software synthesizer or physical device.
.
:CONFIG_MIDICONFIG
Configuration options for the selected MIDI interface.
This is usually the id or name of the MIDI synthesizer you want
to use (find the id/name with DOS command 'mixer /listmidi').
- This option has no effect when using the built-in synthesizers
  (mididevice = fluidsynth or mt32).
- When using ALSA, use Linux command 'aconnect -l' to list open
  MIDI ports, and select one (for example 'midiconfig=14:0'
  for sequencer client 14, port 0).
- If you're using a physical Roland MT-32 with revision 0 PCB,
  the hardware may require a delay in order to prevent its
  buffer from overflowing. In that case, add 'delaysysex',
  for example: 'midiconfig=2 delaysysex'.
See the README/Manual for more details.
.
:CONFIG_MPU401
Type of MPU-401 to emulate.
.
:CONFIG_SOUNDFONT
Path to a SoundFont file in .sf2 format. You can use an
absolute or relative path, or the name of an .sf2 inside
the 'soundfonts' directory within your DOSBox configuration
directory.
Note: The optional volume scaling percentage after the filename
has been deprecated. Please use a mixer command instead to
change the FluidSynth audio channel's volume, e.g.:
  MIXER FSYNTH 200
.
:CONFIG_FSYNTH_CHORUS
Chorus effect: 'auto', 'on', 'off', or custom values.
When using custom values:
  All five must be provided in-order and space-separated.
  They are: voice-count level speed depth modulation-wave, where:
  - voice-count is an integer from 0 to 99.
  - level is a decimal from 0.0 to 10.0
  - speed is a decimal, measured in Hz, from 0.1 to 5.0
  - depth is a decimal from 0.0 to 21.0
  - modulation-wave is either 'sine' or 'triangle'
  For example: chorus = 3 1.2 0.3 8.0 sine
Note: You can disable the FluidSynth chorus and enable the
mixer-level chorus on the FluidSynth channel instead, or
enable both chorus effects at the same time. Whether this
sounds good depends on the SoundFont and the chorus settings
being used.
.
:CONFIG_FSYNTH_REVERB
Reverb effect: 'auto', 'on', 'off', or custom values.
When using custom values:
  All four must be provided in-order and space-separated.
  They are: room-size damping width level, where:
  - room-size is a decimal from 0.0 to 1.0
  - damping is a decimal from 0.0 to 1.0
  - width is a decimal from 0.0 to 100.0
  - level is a decimal from 0.0 to 1.0
  For example: reverb = 0.61 0.23 0.76 0.56
Note: You can disable the FluidSynth reverb and enable the
mixer-level reverb on the FluidSynth channel instead, or
enable both reverb effects at the same time. Whether this
sounds good depends on the SoundFont and the reverb settings
being used.
.
:CONFIG_FSYNTH_FILTER
Filter for the FluidSynth audio output:
  off:       Don't filter the output (default).
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_MODEL
Model of synthesizer to use.
'auto' picks the first model with available ROMs, in order as listed.
'cm32l' and 'mt32' pick the first model of their type, in the order listed.
'mt32_old' and 'mt32_new' are aliases for 1.07 and 2.04, respectively.
.
:CONFIG_ROMDIR
The directory containing ROMs for one or more models.
The directory can be absolute or relative, or leave it blank to
use the 'mt32-roms' directory in your DOSBox configuration
directory. Other common system locations will be checked as well.
ROM files inside this directory may include any of the following:
  - MT32_CONTROL.ROM and MT32_PCM.ROM, for the 'mt32' model.
  - CM32L_CONTROL.ROM and CM32L_PCM.ROM, for the 'cm32l' model.
  - Unzipped MAME MT-32 and CM-32L ROMs, for the versioned models.
.
:CONFIG_MT32_FILTER
Filter for the Roland MT-32/CM-32L audio output:
  off:       Don't filter the output (default).
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:MT32_NO_SUPPORTED_MODELS
No supported models present.
.
:MT32_ROM_NOT_LOADED
No ROM is currently loaded
.
:MT32_INVENTORY_TABLE_MISSING_LETTER
-
.
:MT32_INVENTORY_TABLE_AVAILABLE_LETTER
y
.
:MT32_ACTIVE_ROM_LABEL
Active ROM  : 
.
:MT32_SOURCE_DIR_LABEL
Loaded From : 
.
:CONFIG_SBTYPE
Type of Sound Blaster to emulate. 'gb' is Game Blaster.
.
:CONFIG_SBBASE
The IO address of the Sound Blaster.
.
:CONFIG_IRQ
The IRQ number of the Sound Blaster.
.
:CONFIG_DMA
The DMA number of the Sound Blaster.
.
:CONFIG_HDMA
The High DMA number of the Sound Blaster.
.
:CONFIG_SBMIXER
Allow the Sound Blaster mixer to modify the DOSBox mixer.
.
:CONFIG_SBWARMUP
Silence initial DMA audio after card power-on, in milliseconds.
This mitigates pops heard when starting many SB-based games.
Reduce this if you notice intial playback is missing audio.
.
:CONFIG_OPLRATE
The OPL waveform is now sampled at the mixer's playback rate to avoid resampling.
.
:CONFIG_OPLMODE
Type of OPL emulation. On 'auto' the mode is determined by 'sbtype'.
All OPL modes are AdLib-compatible, except for 'cms'.
.
:CONFIG_OPLEMU
Only 'nuked' OPL emulation is supported now.
.
:CONFIG_SB_FILTER
Type of filter to emulate for the Sound Blaster digital sound output:
  auto:      Use the appropriate filter determined by 'sbtype'.
  sb1, sb2, sbpro1, sbpro2, sb16:
             Use the filter of this Sound Blaster model.
  modern:    Use linear interpolation upsampling that acts as a low-pass
             filter; this is the legacy DOSBox behaviour (default).
  off:       Don't filter the output.
  <custom>:  One or two custom filters in the following format:
               TYPE ORDER FREQ
             Where TYPE can be 'hpf' (high-pass) or 'lpf' (low-pass),
             ORDER is the order of the filter from 1 to 16
             (1st order = 6dB/oct slope, 2nd order = 12dB/oct, etc.),
             and FREQ is the cutoff frequency in Hz. Examples:
                lpf 2 12000
                hpf 3 120 lfp 1 6500
.
:CONFIG_SB_FILTER_ALWAYS_ON
Force the Sound Blaster filter to be always on
(disallow programs from turning the filter off).
.
:CONFIG_OPL_FILTER
Type of filter to emulate for the Sound Blaster OPL output:
  auto:      Use the appropriate filter determined by 'sbtype' (default).
  sb1, sb2, sbpro1, sbpro2, sb16:
             Use the filter of this Sound Blaster model.
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_CMS_FILTER
Filter for the Sound Blaster CMS output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_GUS
Enable Gravis UltraSound emulation.
.
:CONFIG_GUSBASE
The IO base address of the Gravis UltraSound.
.
:CONFIG_GUSIRQ
The IRQ number of the Gravis UltraSound.
.
:CONFIG_GUSDMA
The DMA channel of the Gravis UltraSound.
.
:CONFIG_ULTRADIR
Path to UltraSound directory. In this directory
there should be a MIDI directory that contains
the patch files for GUS playback. Patch sets used
with Timidity should work fine.
.
:CONFIG_GUS_FILTER
Filter for the Gravis UltraSound audio output:
  off:       Don't filter the output (default).
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_SIDMODEL
Model of chip to emulate in the Innovation SSI-2001 card:
 - auto:  Selects the 6581 chip.
 - 6581:  The original chip, known for its bassy and rich character.
 - 8580:  A later revision that more closely matched the SID specification.
          It fixed the 6581's DC bias and is less prone to distortion.
          The 8580 is an option on reproduction cards, like the DuoSID.
 - none:  Disables the card.
.
:CONFIG_SIDCLOCK
The SID chip's clock frequency, which is jumperable on reproduction cards.
 - default: uses 0.895 MHz, per the original SSI-2001 card.
 - c64ntsc: uses 1.023 MHz, per NTSC Commodore PCs and the DuoSID.
 - c64pal:  uses 0.985 MHz, per PAL Commodore PCs and the DuoSID.
 - hardsid: uses 1.000 MHz, available on the DuoSID.
.
:CONFIG_SIDPORT
The IO port address of the Innovation SSI-2001.
.
:CONFIG_6581FILTER
The SID's analog filtering meant that each chip was physically unique.
Adjusts the 6581's filtering strength as a percent from 0 to 100.
.
:CONFIG_8580FILTER
Adjusts the 8580's filtering strength as a percent from 0 to 100.
.
:CONFIG_INNOVATION_FILTER
Filter for the Innovation audio output:
  off:       Don't filter the output (default).
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_PCSPEAKER
PC speaker emulation model:
  discrete: Waveform is created using discrete steps (default).
            Works well for games that use RealSound-type effects.
  impulse:  Waveform is created using sinc impulses.
            Recommended for square-wave games, like Commander Keen.
            While improving accuracy, it is more CPU intensive.
  none/off: Don't use the PC Speaker.
.
:CONFIG_PCSPEAKER_FILTER
Filter for the PC Speaker output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_ZERO_OFFSET
DC-offset is now eliminated globally from the master mixer output.
.
:CONFIG_TANDY
Enable Tandy Sound System emulation.
For 'auto', emulation is present only if machine is set to 'tandy'.
.
:CONFIG_TANDY_FILTER
Filter for the Tandy synth output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_TANDY_DAC_FILTER
Filter for the Tandy DAC output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_LPT_DAC
Type of DAC plugged into the parallel port:
  disney:    Disney Sound Source.
  covox:     Covox Speech Thing.
  ston1:     Stereo-on-1 DAC, in stereo up to 30 kHz.
  none/off:  Don't use a parallel port DAC (default).
.
:CONFIG_LPT_DAC_FILTER
Filter for the LPT DAC audio device(s):
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_DISNEY
Use 'lpt_dac=disney' to enable the Disney Sound Source.
.
:CONFIG_PS1AUDIO
Enable IBM PS/1 Audio emulation.
.
:CONFIG_PS1AUDIO_FILTER
Filter for the PS/1 Audio synth output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_PS1AUDIO_DAC_FILTER
Filter for the PS/1 Audio DAC output:
  on:        Filter the output (default).
  off:       Don't filter the output.
  <custom>:  Custom filter definition; see 'sb_filter' for details.
.
:CONFIG_JOYSTICKTYPE
Type of joystick to emulate: auto (default),
auto     : Detect and use any joystick(s), if possible.,
2axis    : Support up to two joysticks, each with 2 axis
4axis    : Support the first joystick only, as a 4-axis type.
4axis_2  : Support the second joystick only, as a 4-axis type.
fcs      : Emulate joystick as an original Thrustmaster FCS.
ch       : Emulate joystick as an original CH Flightstick.
hidden   : Prevent DOS from seeing the joystick(s), but enable them for
           mapping.
disabled : Fully disable joysticks: won't be polled, mapped, or visible in DOS.
(Remember to reset DOSBox's mapperfile if you saved it earlier)
.
:CONFIG_TIMED
enable timed intervals for axis. Experiment with this option, if your
joystick drifts (away).
.
:CONFIG_AUTOFIRE
continuously fires as long as you keep the button pressed.
.
:CONFIG_SWAP34
swap the 3rd and the 4th axis. Can be useful for certain joysticks.
.
:CONFIG_BUTTONWRAP
enable button wrapping at the number of emulated buttons.
.
:CONFIG_CIRCULARINPUT
enable translation of circular input to square output.
Try enabling this if your left analog stick can only move in a circle.
.
:CONFIG_DEADZONE
the percentage of motion to ignore. 100 turns the stick into a digital one.
.
:CONFIG_USE_JOY_CALIBRATION_HOTKEYS
Activates hotkeys to allow realtime calibration of the joystick's x and y axis.
Only consider this if in-game calibration fails and other settings have been
tried.
 - Ctrl/Cmd+Arrow-keys adjusts the axis' scalar value:
     - left and right diminish or magnify the x-axis scalar, respectively.
     - down and up diminish or magnify the y-axis scalar, respectively.
 - Alt+Arrow-keys adjusts the axis' offset position:
     - left and right shift x-axis offset in the given direction.
     - down and up shift the y-axis offset in the given direction.
 - Reset the X and Y calibration using Ctrl+Delete and Ctrl+Home, respectively.
Each tap will report X or Y calibration values you can set below. When you find
parameters that work, quit the game, switch this setting back to false, and
populate the reported calibration parameters.
.
:CONFIG_JOY_X_CALIBRATION
Apply x-axis calibration parameters from the hotkeys. Default is 'auto'.
.
:CONFIG_JOY_Y_CALIBRATION
Apply Y-axis calibration parameters from the hotkeys. Default is 'auto'.
.
:CONFIG_SERIAL1
set type of device connected to com port.
Can be disabled, dummy, mouse, modem, nullmodem, direct.
Additional parameters must be on the same line in the form of
parameter:value. Parameter for all types is irq (optional).
for mouse:
   type, can be one of:
      2btn:  2 buttons, Microsoft serial mouse
      3btn:  3 buttons, Logitech serial mouse
      wheel: 3 buttons + wheel serial mouse
      msm:   3 buttons, Mouse Systems Mouse
      2btn+msm, 3btn+msm, wheel+msm : autoselection
   rate, can be normal or smooth (more frequent updates than on real PC)
   Default is type:wheel+msm rate:smooth
for direct: realport (required), rxdelay (optional).
   (realport:COM1 realport:ttyS0).
for modem: listenport, sock, baudrate (all optional).
for nullmodem: server, rxdelay, txdelay, telnet, usedtr,
   transparent, port, inhsocket, sock (all optional).
SOCK parameter specifies the protocol to be used by both sides
of the conection. 0 for TCP and 1 for ENet reliable UDP.
Example: serial1=modem listenport:5000 sock:1
.
:CONFIG_SERIAL2
see serial1
.
:CONFIG_SERIAL3
see serial1
.
:CONFIG_SERIAL4
see serial1
.
:CONFIG_PHONEBOOKFILE
File used to map fake phone numbers to addresses.
.
:CONFIG_XMS
Enable XMS support.
.
:CONFIG_EMS
Enable EMS support. The default (=true) provides the best
compatibility but certain applications may run better with
other choices, or require EMS support to be disabled (=false)
to work at all.
.
:CONFIG_UMB
Enable UMB support.
.
:CONFIG_VER
Set DOS version (5.0 by default). Specify as major.minor format.
A single number is treated as the major version.
Common settings are 3.3, 5.0, 6.22, and 7.1.
.
:CONFIG_COUNTRY
Set DOS country code which will affect country-specific
information such as date, time, and decimal formats.
If set to 0, the country code corresponding to the
selected keyboard layout will be used.
.
:CONFIG_EXPAND_SHELL_VARIABLE
Enable expanding environment variables such as %PATH%
while in the DOS command shell. FreeDOS and MS-DOS 7/8
COMMAND.COM supports this behavior.
.
:CONFIG_KEYBOARDLAYOUT
Language code of the keyboard layout (or none).
.
:CONFIG_IPX
Enable ipx over UDP/IP emulation.
.
:CONFIG_NE2000
Enable emulation of a Novell NE2000 network card on a software-based
network (using libslirp) with properties as follows:
 - 255.255.255.0 : Subnet mask of the 10.0.2.0 virtual LAN.
 - 10.0.2.2      : IP of the gateway and DHCP service.
 - 10.0.2.3      : IP of the virtual DNS server.
 - 10.0.2.15     : First IP provided by DHCP, your IP!
Note: Inside DOS, setting this up requires an NE2000 packet driver,
      DHCP client, and TCP/IP stack. You might need port-forwarding
      from the host into the DOS guest, and from your router to your
      host when acting as the server for multiplayer games.
.
:CONFIG_NICBASE
The base address of the NE2000 card.
Note: Addresses 220 and 240 might not be available as they're assigned
      to the Sound Blaster and Gravis UltraSound by default.
.
:CONFIG_NICIRQ
The interrupt used by the NE2000 card.
Note: IRQs 3 and 5 might not be available as they're assigned
      to 'serial2' and the Gravis UltraSound by default.
.
:CONFIG_MACADDR
The MAC address of the NE2000 card.
.
:CONFIG_TCP_PORT_FORWARDS
Forwards one or more TCP ports from the host into the DOS guest.
The format is:
  port1  port2  port3 ... (e.g., 21 80 443)
  This will forward FTP, HTTP, and HTTPS into the DOS guest.
If the ports are privileged on the host, a mapping can be used
  host:guest  ..., (e.g., 8021:21 8080:80)
  This will forward ports 8021 and 8080 to FTP and HTTP in the guest
A range of adjacent ports can be abbreviated with a dash:
  start-end ... (e.g., 27910-27960)
  This will forward ports 27910 to 27960 into the DOS guest.
Mappings and ranges can be combined, too:
  hstart-hend:gstart-gend ..., (e.g, 8040-8080:20-60)
  This forwards ports 8040 to 8080 into 20 to 60 in the guest
Notes:
  - If mapped ranges differ, the shorter range is extended to fit.
  - If conflicting host ports are given, only the first one is setup.
  - If conflicting guest ports are given, the latter rule takes precedent.
.
:CONFIG_UDP_PORT_FORWARDS
Forwards one or more UDP ports from the host into the DOS guest.
The format is the same as for TCP port forwards.
.
:AUTOEXEC_CONFIGFILE_HELP
Lines in this section will be run at startup.
You can put your MOUNT lines here.

.
:CONFIGFILE_INTRO
# This is the configuration file for dosbox-staging (%s).
# Lines starting with a '#' character are comments.

.
:CONFIG_SUGGESTED_VALUES
Possible values
.
:PROGRAM_CONFIG_PROPERTY_ERROR
No such section or property: %s

.
:PROGRAM_CONFIG_NO_PROPERTY
There is no property "%s" in section "%s".

.
:PROGRAM_CONFIG_SET_SYNTAX
Correct syntax: config -set "[section] property=value".

.
:PROGRAM_CONFIG_NOCONFIGFILE
No config file loaded!

.
:PROGRAM_CONFIG_PRIMARY_CONF
Primary config file: 
%s

.
:PROGRAM_CONFIG_ADDITIONAL_CONF
Additional config files:

.
:PROGRAM_CONFIG_CONFDIR
DOSBox Staging %s configuration directory: 
%s


.
:PROGRAM_CONFIG_FILE_ERROR

Can't open file %s

.
:PROGRAM_CONFIG_FILE_WHICH
Writing config file %s

.
:SHELL_CMD_CONFIG_HELP_LONG
Adjusts DOSBox Staging's configurable parameters.
-writeconf or -wc without parameter: write to primary loaded config file.
-writeconf or -wc with filename: write file to config directory.
Use -writelang or -wl filename to write the current language strings.
-r [parameters]
 Restart DOSBox, either using the previous parameters or any that are appended.
-wcp [filename]
 Write config file to the program directory, dosbox.conf or the specified
 filename.
-wcd
 Write to the default config file in the config directory.
-l lists configuration parameters.
-h, -help, -? sections / sectionname / propertyname
 Without parameters, displays this help screen. Add "sections" for a list of
 sections. For info about a specific section or property add its name behind.
-axclear clears the autoexec section.
-axadd [line] adds a line to the autoexec section.
-axtype prints the content of the autoexec section.
-securemode switches to secure mode.
-avistart starts AVI recording.
-avistop stops AVI recording.
-startmapper starts the keymapper.
-get "section property" returns the value of the property.
-set "section property=value" sets the value.

.
:PROGRAM_CONFIG_HLP_PROPHLP
Purpose of property "%s" (contained in section "%s"):
%s

Possible Values: %s
Default value: %s
Current value: %s

.
:PROGRAM_CONFIG_HLP_LINEHLP
Purpose of section "%s":
%s
Current value:
%s

.
:PROGRAM_CONFIG_HLP_NOCHANGE
This property cannot be changed at runtime.

.
:PROGRAM_CONFIG_HLP_POSINT
positive integer
.
:PROGRAM_CONFIG_HLP_SECTHLP
Section %s contains the following properties:

.
:PROGRAM_CONFIG_HLP_SECTLIST
DOSBox configuration contains the following sections:


.
:PROGRAM_CONFIG_SECURE_ON
Switched to secure mode.

.
:PROGRAM_CONFIG_SECURE_DISALLOW
This operation is not permitted in secure mode.

.
:PROGRAM_CONFIG_SECTION_ERROR
Section "%s" doesn't exist.

.
:PROGRAM_CONFIG_VALUE_ERROR
"%s" is not a valid value for property %s.

.
:PROGRAM_CONFIG_GET_SYNTAX
Correct syntax: config -get "section property".

.
:PROGRAM_CONFIG_PRINT_STARTUP

DOSBox was started with the following command line parameters:
%s

.
:PROGRAM_CONFIG_MISSINGPARAM
Missing parameter.

.
:PROGRAM_PATH_TOO_LONG
The path "%s" exceeds the DOS maximum length of %d characters

.
:PROGRAM_EXECUTABLE_MISSING
Executable file not found: %s

.
:MIDI_DEVICE_LIST_NOT_SUPPORTED
listing not supported
.
:MIDI_DEVICE_NOT_CONFIGURED
device not configured
.
:MOUNT_TYPE_LOCAL_DIRECTORY
local directory
.
:MOUNT_TYPE_CDROM
CD-ROM drive
.
:MOUNT_TYPE_FAT
FAT drive
.
:MOUNT_TYPE_ISO
ISO drive
.
:MOUNT_TYPE_VIRTUAL
internal virtual drive
.
:MOUNT_TYPE_UNKNOWN
unknown drive
.
:WIKI_ADD_UTILITIES_ARTICLE
https://github.com/dosbox-staging/dosbox-staging/wiki/Add-Utilities
.
:WIKI_URL
https://github.com/dosbox-staging/dosbox-staging/wiki
.
:SHELL_CMD_AUTOTYPE_HELP_LONG
Performs scripted keyboard entry into a running DOS game.

Usage:
  [color=green]autotype[reset] -list
  [color=green]autotype[reset] [-w [color=white]WAIT[reset]] [-p [color=white]PACE[reset]] [color=cyan]BUTTONS[reset]

Where:
  [color=white]WAIT[reset]    is the number of seconds to wait before typing begins (max of 30).
  [color=white]PACE[reset]    is the number of seconds before each keystroke (max of 10).
  [color=cyan]BUTTONS[reset] is one or more space-separated buttons.

Notes:
  The [color=cyan]BUTTONS[reset] supplied in the command will be autotyped into running DOS games
  after they start. Autotyping begins after [color=cyan]WAIT[reset] seconds, and each button is
  entered every [color=white]PACE[reset] seconds. The [color=cyan],[reset] character inserts an extra [color=white]PACE[reset] delay.
  [color=white]WAIT[reset] and [color=white]PACE[reset] default to 2 and 0.5 seconds respectively if not specified.
  A list of all available button names can be obtained using the -list option.

Examples:
  [color=green]autotype[reset] -list
  [color=green]autotype[reset] -w [color=white]1[reset] -p [color=white]0.3[reset] [color=cyan]up enter , right enter[reset]
  [color=green]autotype[reset] -p [color=white]0.2[reset] [color=cyan]f1 kp_8 , , enter[reset]
  [color=green]autotype[reset] -w [color=white]1.3[reset] [color=cyan]esc enter , p l a y e r enter
[reset]
.
:SHELL_CMD_BOOT_HELP_LONG
Boots DOSBox Staging from a DOS drive or disk image.

Usage:
  [color=green]boot[reset] [color=white]DRIVE[reset]
  [color=green]boot[reset] [color=cyan]IMAGEFILE[reset]

Where:
  [color=white]DRIVE[reset] is a drive to boot from, must be [color=white]A:[reset], [color=white]C:[reset], or [color=white]D:[reset].
  [color=cyan]IMAGEFILE[reset] is one or more floppy images, separated by spaces.

Notes:
  A DOS drive letter must have been mounted previously with [color=green]imgmount[reset] command.
  The DOS drive or disk image must be bootable, containing DOS system files.
  If more than one disk images are specified, you can swap them with a hotkey.

Examples:
  [color=green]boot[reset] [color=white]c:[reset]
  [color=green]boot[reset] [color=cyan]disk1.ima disk2.ima[reset]

.
:PROGRAM_BOOT_NOT_EXIST
Bootdisk file does not exist.  Failing.

.
:PROGRAM_BOOT_NOT_OPEN
Cannot open bootdisk file.  Failing.

.
:PROGRAM_BOOT_WRITE_PROTECTED
Image file is read-only! Might create problems.

.
:PROGRAM_BOOT_PRINT_ERROR
This command boots DOSBox Staging from either a floppy or hard disk image.

For this command, one can specify a succession of floppy disks swappable
by pressing %s+F4, and -l specifies the mounted drive to boot from.  If
no drive letter is specified, this defaults to booting from the A drive.
The only bootable drive letters are A, C, and D.  For booting from a hard
drive (C or D), the image should have already been mounted using the
[color=blue]IMGMOUNT[reset] command.

Type [color=blue]BOOT /?[reset] for the syntax of this command.

.
:PROGRAM_BOOT_UNABLE
Unable to boot off of drive %c
.
:PROGRAM_BOOT_IMAGE_OPEN
Opening image file: %s

.
:PROGRAM_BOOT_IMAGE_MOUNTED
Floppy image(s) already mounted.

.
:PROGRAM_BOOT_IMAGE_NOT_OPEN
Cannot open %s
.
:PROGRAM_BOOT_BOOT
Booting from drive %c...

.
:PROGRAM_BOOT_CART_WO_PCJR
PCjr cartridge found, but machine is not PCjr
.
:PROGRAM_BOOT_CART_LIST_CMDS
Available PCjr cartridge commands: %s
.
:PROGRAM_BOOT_CART_NO_CMDS
No PCjr cartridge commands found
.
:MSCDEX_SUCCESS
MSCDEX installed.

.
:MSCDEX_ERROR_MULTIPLE_CDROMS
MSCDEX: Failure: Drive-letters of multiple CD-ROM drives have to be continuous.

.
:MSCDEX_ERROR_NOT_SUPPORTED
MSCDEX: Failure: Not yet supported.

.
:MSCDEX_ERROR_PATH
MSCDEX: Specified location is not a CD-ROM drive.

.
:MSCDEX_ERROR_OPEN
MSCDEX: Failure: Invalid file or unable to open.

.
:MSCDEX_TOO_MANY_DRIVES
MSCDEX: Failure: Too many CD-ROM drives (max: 5). MSCDEX Installation failed.

.
:MSCDEX_LIMITED_SUPPORT
MSCDEX: Mounted subdirectory: limited support.

.
:MSCDEX_INVALID_FILEFORMAT
MSCDEX: Failure: File is either no ISO/CUE image or contains errors.

.
:MSCDEX_UNKNOWN_ERROR
MSCDEX: Failure: Unknown error.

.
:MSCDEX_WARNING_NO_OPTION
MSCDEX: Warning: Ignoring unsupported option '%s'.

.
:PROGRAM_MOUNT_STATUS_DRIVE
Drive
.
:PROGRAM_MOUNT_STATUS_TYPE
Type
.
:PROGRAM_MOUNT_STATUS_LABEL
Label
.
:PROGRAM_MOUNT_STATUS_NAME
Image name
.
:PROGRAM_MOUNT_STATUS_SLOT
Swap slot
.
:PROGRAM_MOUNT_STATUS_2
Drive %c is mounted as %s

.
:PROGRAM_MOUNT_STATUS_1
The currently mounted drives are:

.
:SHELL_CMD_IMGMOUNT_HELP_LONG
Mount a CD-ROM, floppy, or disk image to a drive letter.

Usage:
  [color=green]imgmount[reset] [color=white]DRIVE[reset] [color=cyan]CDROM-SET[reset] [-fs iso] [-ide] -t cdrom|iso
  [color=green]imgmount[reset] [color=white]DRIVE[reset] [color=cyan]IMAGEFILE[reset] [IMAGEFILE2 [..]] [-fs fat] -t hdd|floppy -ro
  [color=green]imgmount[reset] [color=white]DRIVE[reset] [color=cyan]BOOTIMAGE[reset] [-fs fat|none] -t hdd -size GEOMETRY -ro
  [color=green]imgmount[reset] -u [color=white]DRIVE[reset]  (unmounts the [color=white]DRIVE[reset]'s image)

Where:
  [color=white]DRIVE[reset]     is the drive letter where the image will be mounted: a, c, d, ...
  [color=cyan]CDROM-SET[reset] is an ISO, CUE+BIN, CUE+ISO, or CUE+ISO+FLAC/OPUS/OGG/MP3/WAV
  [color=cyan]IMAGEFILE[reset] is a hard drive or floppy image in FAT16 or FAT12 format
  [color=cyan]BOOTIMAGE[reset] is a bootable disk image with specified -size GEOMETRY:
            bytes-per-sector,sectors-per-head,heads,cylinders
Notes:
  - %s+F4 swaps & mounts the next [color=cyan]CDROM-SET[reset] or [color=cyan]BOOTIMAGE[reset], if provided.
  - The -ro flag mounts the disk image in read-only (write-protected) mode.
  - The -ide flag emulates an IDE controller with attached IDE CD drive, useful
    for CD-based games that need a real DOS environment via bootable HDD image.
Examples:
  [color=green]imgmount[reset] [color=white]D[reset] [color=cyan]/home/USERNAME/games/doom.iso[reset] -t cdrom
  [color=green]imgmount[reset] [color=white]D[reset] [color=cyan]cd/quake1.cue[reset] -t cdrom
  [color=green]imgmount[reset] [color=white]A[reset] [color=cyan]floppy1.img floppy2.img floppy3.img[reset] -t floppy -ro
  [color=green]imgmount[reset] [color=white]C[reset] [color=cyan]bootable.img[reset] -t hdd -fs none -size 512,63,32,1023

.
:PROGRAM_IMGMOUNT_SPECIFY_DRIVE
Must specify drive letter to mount image at.

.
:PROGRAM_IMGMOUNT_SPECIFY2
Must specify drive number (0 or 3) to mount image at (0,1=fda,fdb;2,3=hda,hdb).

.
:PROGRAM_IMGMOUNT_SPECIFY_GEOMETRY
For [color=light-yellow]CD-ROM[reset] images:   [color=blue]IMGMOUNT drive-letter location-of-image -t iso[reset]

For [color=light-yellow]hardrive[reset] images: Must specify drive geometry for hard drives:
bytes_per_sector, sectors_per_cylinder, heads_per_cylinder, cylinder_count.
[color=blue]IMGMOUNT drive-letter location-of-image -size bps,spc,hpc,cyl[reset]

.
:PROGRAM_IMGMOUNT_STATUS_NONE
No drive available

.
:PROGRAM_IMGMOUNT_IDE_CONTROLLERS_UNAVAILABLE
No available IDE controllers. Drive will not have IDE emulation.

.
:PROGRAM_IMGMOUNT_INVALID_IMAGE
Could not load image file.
Check that the path is correct and the image is accessible.

.
:PROGRAM_IMGMOUNT_INVALID_GEOMETRY
Could not extract drive geometry from image.
Use parameter -size bps,spc,hpc,cyl to specify the geometry.

.
:PROGRAM_IMGMOUNT_TYPE_UNSUPPORTED
Type '%s' is unsupported. Specify 'floppy', 'hdd', 'cdrom', or 'iso'.

.
:PROGRAM_IMGMOUNT_FORMAT_UNSUPPORTED
Format "%s" is unsupported. Specify "fat" or "iso" or "none".

.
:PROGRAM_IMGMOUNT_SPECIFY_FILE
Must specify file-image to mount.

.
:PROGRAM_IMGMOUNT_FILE_NOT_FOUND
Image file not found.

.
:PROGRAM_IMGMOUNT_MOUNT
To mount directories, use the [color=blue]MOUNT[reset] command, not the [color=blue]IMGMOUNT[reset] command.

.
:PROGRAM_IMGMOUNT_ALREADY_MOUNTED
Drive already mounted at that letter.

.
:PROGRAM_IMGMOUNT_CANT_CREATE
Can't create drive from file.

.
:PROGRAM_IMGMOUNT_MOUNT_NUMBER
Drive number %d mounted as %s

.
:PROGRAM_IMGMOUNT_NON_LOCAL_DRIVE
The image must be on a host or local drive.

.
:PROGRAM_IMGMOUNT_MULTIPLE_NON_CUEISO_FILES
Using multiple files is only supported for cue/iso images.

.
:PROGRAM_INTRO
[erases=entire][color=green]Welcome to DOSBox Staging[reset], an x86 emulator with sound and graphics.
DOSBox creates a shell for you which looks like old plain DOS.

For information about basic mount type [color=blue]intro mount[reset]
For information about CD-ROM support type [color=blue]intro cdrom[reset]
For information about special keys type [color=blue]intro special[reset]
For more information, visit DOSBox Staging wiki:[color=blue]
https://github.com/dosbox-staging/dosbox-staging/wiki[reset]

[color=red]DOSBox will stop/exit without a warning if an error occurred![reset]

.
:PROGRAM_INTRO_MOUNT_START
[erases=entire][color=green]Here are some commands to get you started:[reset]
Before you can use the files located on your own filesystem,
You have to mount the directory containing the files.


.
:PROGRAM_INTRO_MOUNT_WINDOWS
[bgcolor=blue][color=white]╔═════════════════════════════════════════════════════════════════════════╗
║ [color=green]mount c c:\dosgames\ [color=white]will create a C drive with c:\dosgames as contents.║
║                                                                         ║
║ [color=green]c:\dosgames\ [color=white]is an example. Replace it with your own games directory.   ║
╚═════════════════════════════════════════════════════════════════════════╝[reset]

.
:PROGRAM_INTRO_MOUNT_OTHER
[bgcolor=blue][color=white]╔══════════════════════════════════════════════════════════════════════╗
║ [color=green]mount c ~/dosgames[color=white] will create a C drive with ~/dosgames as contents.║
║                                                                      ║
║ [color=green]~/dosgames[color=white] is an example. Replace it with your own games directory.  ║
╚══════════════════════════════════════════════════════════════════════╝[reset]

.
:PROGRAM_INTRO_MOUNT_END
After successfully mounting the disk you can type [color=blue]c:[reset] to go to your freshly
mounted C-drive. Typing [color=blue]dir[reset] there will show its contents. [color=blue]cd[reset] will allow you to
enter a directory (recognised by the [color=yellow][][reset] in a directory listing).
You can run programs/files with extensions [color=light-red].exe .bat[reset] and [color=light-red].com[reset].

.
:PROGRAM_INTRO_CDROM_WINDOWS
[erases=entire][color=green]How to mount a real/virtual CD-ROM Drive in DOSBox:[reset]
DOSBox provides CD-ROM emulation on two levels.

The [color=light-yellow]basic[reset] level works on all normal directories, which installs MSCDEX
and marks the files read-only. Usually this is enough for most games:
[color=blue]mount D C:\example -t cdrom[reset]
If it doesn't work you might have to tell DOSBox the label of the CD-ROM:
[color=blue]mount D C:\example -t cdrom -label CDLABEL[reset]

The [color=light-yellow]next[reset] level adds some low-level support.
Therefore only works on CD-ROM drives:
[color=blue]mount d[reset] [color=light-red]D:\ [color=blue]-t cdrom -usecd [color=yellow]0[reset]
Replace [color=light-red]D:\ [reset]with the location of your CD-ROM.
Replace the [color=yellow]0[reset] in [color=blue]-usecd [color=yellow]0[reset] with the number reported for your CD-ROM if you type:
[color=blue]mount -listcd[reset]

Additionally, you can use imgmount to mount iso or cue/bin images:
[color=blue]imgmount D C:\cd.iso -t cdrom[reset]
[color=blue]imgmount D C:\cd.cue -t cdrom[reset]

.
:PROGRAM_INTRO_CDROM_OTHER
[erases=entire][color=green]How to mount a real/virtual CD-ROM Drive in DOSBox:[reset]
DOSBox provides CD-ROM emulation on two levels.

The [color=light-yellow]basic[reset] level works on all normal directories, which installs MSCDEX
and marks the files read-only. Usually this is enough for most games:
[color=blue]mount D ~/example -t cdrom[reset]
If it doesn't work you might have to tell DOSBox the label of the CD-ROM:
[color=blue]mount D ~/example -t cdrom -label CDLABEL[reset]

The [color=light-yellow]next[reset] level adds some low-level support.
Therefore only works on CD-ROM drives:
[color=blue]mount d[reset] [color=light-red]~/example[color=blue] -t cdrom -usecd [color=yellow]0[reset]

Replace [color=light-red]~/example[reset] with the location of your CD-ROM.
Replace the [color=yellow]0[reset] in [color=blue]-usecd [color=yellow]0[reset] with the number reported for your CD-ROM if you type:
[color=blue]mount -listcd[reset]

Additionally, you can use imgmount to mount iso or cue/bin images:
[color=blue]imgmount D ~/cd.iso -t cdrom[reset]
[color=blue]imgmount D ~/cd.cue -t cdrom[reset]

.
:PROGRAM_INTRO_SPECIAL
[erases=entire][color=green]Special keys:[reset]
These are the default keybindings.
They can be changed in the [color=light-yellow]keymapper[reset].

[color=yellow]%s+Enter[reset]  Switch between fullscreen and window mode.
[color=yellow]%s+Pause[reset]  Pause/Unpause emulator.
[color=yellow]%s+F1[reset]   %s Start the [color=light-yellow]keymapper[reset].
[color=yellow]%s+F4[reset]   %s Swap mounted disk image, scan for changes on all drives.
[color=yellow]%s+F5[reset]   %s Save a screenshot.
[color=yellow]%s+F6[reset]   %s Start/Stop recording sound output to a wave file.
[color=yellow]%s+F7[reset]   %s Start/Stop recording video output to a zmbv file.
[color=yellow]%s+F8[reset]   %s Mute/Unmute the audio.
[color=yellow]%s+F9[reset]   %s Shutdown emulator.
[color=yellow]%s+F10[reset]  %s Capture/Release the mouse.
[color=yellow]%s+F11[reset]  %s Slow down emulation.
[color=yellow]%s+F12[reset]  %s Speed up emulation.
[color=yellow]%s+F12[reset]    Unlock speed (turbo button/fast forward).

.
:PROGRAM_KEYB_INFO
Codepage %i has been loaded

.
:PROGRAM_KEYB_INFO_LAYOUT
Codepage %i has been loaded for layout %s

.
:SHELL_CMD_KEYB_HELP_LONG
Configures a keyboard for a specific language.

Usage:
  [color=green]keyb[reset] [color=cyan][LANGCODE][reset]
  [color=green]keyb[reset] [color=cyan]LANGCODE[reset] [color=white]CODEPAGE[reset] [CODEPAGEFILE]

Where:
  [color=cyan]LANGCODE[reset]     is a language code or keyboard layout ID.
  [color=white]CODEPAGE[reset]     is a code page number, such as [color=white]437[reset] and [color=white]850[reset].
  CODEPAGEFILE is a file containing information for a code page.

Notes:
  Running [color=green]keyb[reset] without an argument shows the currently loaded keyboard layout
  and code page. It will change to [color=cyan]LANGCODE[reset] if provided, optionally with a
  [color=white]CODEPAGE[reset] and an additional CODEPAGEFILE to load the specified code page
  number and code page file if provided. This command is especially useful if
  you use a non-US keyboard, and [color=cyan]LANGCODE[reset] can also be set in the configuration
  file under the [dos] section using the "keyboardlayout = [color=cyan]LANGCODE[reset]" setting.

Examples:
  [color=green]KEYB[reset]
  [color=green]KEYB[reset] [color=cyan]uk[reset]
  [color=green]KEYB[reset] [color=cyan]sp[reset] [color=white]850[reset]
  [color=green]KEYB[reset] [color=cyan]de[reset] [color=white]858[reset] mycp.cpi

.
:PROGRAM_KEYB_NOERROR
Keyboard layout %s loaded for codepage %i

.
:PROGRAM_KEYB_FILENOTFOUND
Keyboard file %s not found

.
:PROGRAM_KEYB_INVALIDFILE
Keyboard file %s invalid

.
:PROGRAM_KEYB_LAYOUTNOTFOUND
No layout in %s for codepage %i

.
:PROGRAM_KEYB_INVCPFILE
None or invalid codepage file for layout %s

.
:SHELL_CMD_LOADFIX_HELP_LONG
Loads a program in the specific memory region and then runs it.

Usage:
  [color=green]loadfix[reset] [color=cyan]GAME[reset] [color=white][PARAMETERS][reset]
  [color=green]loadfix[reset] [/d] (or [/f])[reset]

Where:
  [color=cyan]GAME[reset] is a game or program to be loaded, optionally with parameters.

Notes:
  The most common use cases of this command are to fix DOS games or programs
  which show either the "[color=white]Packed File Corrupt[reset]" or "[color=white]Not enough memory"[reset] (e.g.,
  from some 1980's games such as California Games II) error message when run.
  Running [color=green]loadfix[reset] without an argument simply allocates memory for your game
  to run; you can free the memory with either /d or /f option when it finishes.

Examples:
  [color=green]loadfix[reset] [color=cyan]mygame[reset] [color=white]args[reset]
  [color=green]loadfix[reset] /d

.
:PROGRAM_LOADFIX_ALLOC
%d kB allocated.

.
:PROGRAM_LOADFIX_DEALLOC
%d kB freed.

.
:PROGRAM_LOADFIX_DEALLOCALL
Used memory freed.

.
:PROGRAM_LOADFIX_ERROR
Memory allocation error.

.
:SHELL_CMD_LOADROM_HELP_LONG
Loads a ROM image of the video BIOS or IBM BASIC.

Usage:
  [color=green]loadrom [color=cyan]IMAGEFILE[reset]

Where:
  [color=cyan]IMAGEFILE[reset] is a video BIOS or IBM BASIC ROM image.

Notes:
   After loading an IBM BASIC ROM image into the emulated ROM with the command,
   you can run the original IBM BASIC interpreter program in DOSBox Staging.

Examples:
  [color=green]loadrom[reset] [color=cyan]bios.rom[reset]

.
:PROGRAM_LOADROM_SPECIFY_FILE
Must specify ROM file to load.

.
:PROGRAM_LOADROM_CANT_OPEN
ROM file not accessible.

.
:PROGRAM_LOADROM_TOO_LARGE
ROM file too large.

.
:PROGRAM_LOADROM_INCOMPATIBLE
Video BIOS not supported by machine type.

.
:PROGRAM_LOADROM_UNRECOGNIZED
ROM file not recognized.

.
:PROGRAM_LOADROM_BASIC_LOADED
BASIC ROM loaded.

.
:SHELL_CMD_MEM_HELP_LONG
Displays the DOS memory information.

Usage:
  [color=green]mem[reset]

Where:
  This command has no parameters.

Notes:
  This command shows the DOS memory status, including the free conventional
  memory, UMB (upper) memory, XMS (extended) memory, and EMS (expanded) memory.

Examples:
  [color=green]mem[reset]

.
:PROGRAM_MEM_CONVEN
%10d kB free conventional memory

.
:PROGRAM_MEM_EXTEND
%10d kB free extended memory

.
:PROGRAM_MEM_EXPAND
%10d kB free expanded memory

.
:PROGRAM_MEM_UPPER
%10d kB free upper memory in %d blocks (largest UMB %d kB)

.
:SHELL_CMD_MOUNT_HELP
maps physical folders or drives to a virtual drive letter.

.
:SHELL_CMD_MOUNT_HELP_LONG
Mount a directory from the host OS to a drive letter.

Usage:
  [color=green]mount[reset] [color=white]DRIVE[reset] [color=cyan]DIRECTORY[reset] [-t TYPE] [-usecd #] [-freesize SIZE] [-label LABEL]
  [color=green]mount[reset] -listcd / -cd (lists all detected CD-ROM drives and their numbers)
  [color=green]mount[reset] -u [color=white]DRIVE[reset]  (unmounts the DRIVE's directory)

Where:
  [color=white]DRIVE[reset]     the drive letter where the directory will be mounted: A, C, D, ...
  [color=cyan]DIRECTORY[reset] is the directory on the host OS to be mounted
  TYPE      type of the directory to mount: dir, floppy, cdrom, or overlay
  SIZE      free space for the virtual drive (KiB for floppies, MiB otherwise)
  LABEL     drive label name to be used

Notes:
  - '-t overlay' redirects writes for mounted drive to another directory.
  - Additional options are described in the manual (README file, chapter 4).

Examples:
  [color=green]mount[reset] [color=white]C[reset] [color=cyan]~/dosgames[reset]
  [color=green]mount[reset] [color=white]D[reset] [color=cyan]"/media/USERNAME/Game CD"[reset] -t cdrom
  [color=green]mount[reset] [color=white]C[reset] [color=cyan]my_savegame_files[reset] -t overlay

.
:PROGRAM_MOUNT_CDROMS_FOUND
CDROMs found: %d

.
:PROGRAM_MOUNT_ERROR_1
Directory %s doesn't exist.

.
:PROGRAM_MOUNT_ERROR_2
%s isn't a directory

.
:PROGRAM_MOUNT_ILL_TYPE
Illegal type %s

.
:PROGRAM_MOUNT_ALREADY_MOUNTED
Drive %c already mounted with %s

.
:PROGRAM_MOUNT_UMOUNT_NOT_MOUNTED
Drive %c isn't mounted.

.
:PROGRAM_MOUNT_UMOUNT_SUCCESS
Drive %c has successfully been removed.

.
:PROGRAM_MOUNT_UMOUNT_NO_VIRTUAL
Virtual Drives can not be unMOUNTed.

.
:PROGRAM_MOUNT_DRIVEID_ERROR
'%c' is not a valid drive identifier.

.
:PROGRAM_MOUNT_WARNING_WIN
[color=red]Mounting c:\ is NOT recommended. Please mount a (sub)directory next time.[reset]

.
:PROGRAM_MOUNT_WARNING_OTHER
[color=red]Mounting / is NOT recommended. Please mount a (sub)directory next time.[reset]

.
:PROGRAM_MOUNT_NO_OPTION
Warning: Ignoring unsupported option '%s'.

.
:PROGRAM_MOUNT_OVERLAY_NO_BASE
A normal directory needs to be MOUNTed first before an overlay can be added on top.

.
:PROGRAM_MOUNT_OVERLAY_INCOMPAT_BASE
The overlay is NOT compatible with the drive that is specified.

.
:PROGRAM_MOUNT_OVERLAY_MIXED_BASE
The overlay needs to be specified using the same addressing as the underlying drive. No mixing of relative and absolute paths.
.
:PROGRAM_MOUNT_OVERLAY_SAME_AS_BASE
The overlay directory can not be the same as underlying drive.

.
:PROGRAM_MOUNT_OVERLAY_GENERIC_ERROR
Something went wrong.

.
:PROGRAM_MOUNT_OVERLAY_STATUS
Overlay %s on drive %c mounted.

.
:PROGRAM_MOUNT_MOVE_Z_ERROR_1
Can't move drive Z. Drive %c is mounted already.

.
:SHELL_CMD_RESCAN_HELP_LONG
Scans for changes on mounted DOS drives.

Usage:
  [color=green]rescan[reset] [color=cyan]DRIVE[reset]
  [color=green]rescan[reset] [/a]

Where:
  [color=cyan]DRIVE[reset] is the drive to scan for changes.

Notes:
  - Running [color=green]rescan[reset] without an argument scans for changes of the current drive.
  - Changes to this drive made on the host will then be reflected inside DOS.
  - You can also scan for changes on all mounted drives with the /a option.

Examples:
  [color=green]rescan[reset] [color=cyan]c:[reset]
  [color=green]rescan[reset] /a

.
:PROGRAM_RESCAN_SUCCESS
Drive re-scanned.

.
:SHELL_CMD_MIXER_HELP_LONG
Displays or changes the sound mixer settings.

Usage:
  [color=green]mixer[reset] [color=cyan][CHANNEL][reset] [color=white]COMMANDS[reset] [/noshow]
  [color=green]mixer[reset] [/listmidi]

Where:
  [color=cyan]CHANNEL[reset]  is the sound channel to change the settings of.
  [color=white]COMMANDS[reset] is one or more of the following commands:
    Volume:    [color=white]0[reset] to [color=white]100[reset], or decibel value prefixed with [color=white]d[reset] (e.g. [color=white]d-7.5[reset])
               use [color=white]L:R[reset] to set the left and right side separately (e.g. [color=white]10:20[reset])
    Lineout:   [color=white]stereo[reset], [color=white]reverse[reset] (for stereo channels only)
    Crossfeed: [color=white]x0[reset] to [color=white]x100[reset]    Reverb: [color=white]r0[reset] to [color=white]r100[reset]    Chorus: [color=white]c0[reset] to [color=white]c100[reset]

Notes:
  Running [color=green]mixer[reset] without an argument shows the current mixer settings.
  You may change the settings of more than one channel in a single command.
  If channel is unspecified, you can set crossfeed, reverb or chorus globally.
  You can view the list of available MIDI devices with /listmidi.
  The /noshow option applies the changes without showing the mixer settings.

Examples:
  [color=green]mixer[reset] [color=cyan]cdda[reset] [color=white]50[reset] [color=cyan]sb[reset] [color=white]reverse[reset] /noshow
  [color=green]mixer[reset] [color=white]x30[reset] [color=cyan]fm[reset] [color=white]150 r50 c30[reset] [color=cyan]sb[reset] [color=white]x10[reset]
.
:SHELL_CMD_MIXER_HEADER_LAYOUT
%-22s %4.0f:%-4.0f %+6.2f:%-+6.2f  %-8s %5s %7s %7s
.
:SHELL_CMD_MIXER_HEADER_LABELS
[color=white]Channel      Volume    Volume (dB)   Mode     Xfeed  Reverb  Chorus[reset]
.
:SHELL_CMD_MIXER_CHANNEL_OFF
off
.
:SHELL_CMD_MIXER_CHANNEL_STEREO
Stereo
.
:SHELL_CMD_MIXER_CHANNEL_REVERSE
Reverse
.
:SHELL_CMD_MIXER_CHANNEL_MONO
Mono
.
:SHELL_CMD_SERIAL_HELP_LONG
Manages the serial ports.

Usage:
  [color=green]serial[reset] [color=white][PORT#][reset]                   List all or specified ([color=white]1[reset], [color=white]2[reset], [color=white]3[reset], or [color=white]4[reset]) ports.
  [color=green]serial[reset] [color=white]PORT#[reset] [color=cyan]DEVICE[reset] [settings]   Attach specified device to the given port.

Where:
  [color=cyan]DEVICE[reset]   One of: [color=cyan]MODEM[reset], [color=cyan]NULLMODEM[reset], [color=cyan]MOUSE[reset], [color=cyan]DIRECT[reset], [color=cyan]DUMMY[reset], or [color=cyan]DISABLED[reset]

  Optional settings for each [color=cyan]DEVICE[reset]:
  For [color=cyan]MODEM[reset]      : IRQ, LISTENPORT, SOCK
  For [color=cyan]NULLMODEM[reset]  : IRQ, SERVER, RXDELAY, TXDELAY, TELNET, USEDTR, TRANSPARENT,
                   PORT, INHSOCKET, SOCK
  For [color=cyan]MOUSE[reset]      : IRQ, RATE (NORMAL or SMOOTH), TYPE (2BTN, 3BTN, WHEEL, MSM,
                   2BTN+MSM, 3BTN+MSM, or WHEEL+MSM)
  For [color=cyan]DIRECT[reset]     : IRQ, REALPORT (required), RXDELAY
  For [color=cyan]DUMMY[reset]      : IRQ

Examples:
  [color=green]SERIAL[reset] [color=white]1[reset] [color=cyan]NULLMODEM[reset] PORT:1250                 : Listen on TCP:1250 as server
  [color=green]SERIAL[reset] [color=white]2[reset] [color=cyan]NULLMODEM[reset] SERVER:10.0.0.6 PORT:1250 : Connect to TCP:1250 as client
  [color=green]SERIAL[reset] [color=white]3[reset] [color=cyan]MODEM[reset] LISTENPORT:5000 SOCK:1        : Listen on UDP:5000 as server
  [color=green]SERIAL[reset] [color=white]4[reset] [color=cyan]DIRECT[reset] REALPORT:ttyUSB0             : Use a physical port on Linux
  [color=green]SERIAL[reset] [color=white]1[reset] [color=cyan]MOUSE[reset] TYPE:MSM                      : Mouse Systems mouse

.
:PROGRAM_SERIAL_SHOW_PORT
COM%d: %s %s

.
:PROGRAM_SERIAL_BAD_PORT
Must specify a numeric port value between 1 and %d, inclusive.

.
:PROGRAM_SERIAL_BAD_TYPE
Type must be one of the following:

.
:PROGRAM_SERIAL_INDENTED_LIST
  %s

.
:SHELL_ILLEGAL_PATH
Illegal Path.

.
:SHELL_CMD_HELP
If you want a list of all supported commands type [color=yellow]help /all[reset] .
A short list of the most often used commands:

.
:SHELL_CMD_COMMAND_HELP_LONG
Starts the DOSBox Staging command shell.
Usage:
  [color=green]command[reset]
  [color=green]command[reset] /c (or /init) [color=cyan]COMMAND[reset]

Where:
  [color=cyan]COMMAND[reset] is a DOS command, game, or program to run.

Notes:
  DOSBox Staging automatically starts a DOS command shell by invoking this
  command with /init option when it starts, which shows the welcome banner.
  You can load a new instance of the command shell by running [color=green]command[reset].
  Adding a /c option along with [color=cyan]COMMAND[reset] allows this command to run the
  specified command (optionally with parameters) and then exit automatically.

Examples:
  [color=green]command[reset]
  [color=green]command[reset] /c [color=cyan]echo[reset] [color=white]Hello world![reset]
  [color=green]command[reset] /init [color=cyan]dir[reset]

.
:SHELL_CMD_ECHO_ON
ECHO is on.

.
:SHELL_CMD_ECHO_OFF
ECHO is off.

.
:SHELL_ILLEGAL_SWITCH
Illegal switch: %s.

.
:SHELL_MISSING_PARAMETER
Required parameter missing.

.
:SHELL_CMD_CHDIR_ERROR
Unable to change to: %s.

.
:SHELL_CMD_CHDIR_HINT
Hint: To change to different drive type [color=light-red]%c:[reset]

.
:SHELL_CMD_CHDIR_HINT_2
directoryname is longer than 8 characters and/or contains spaces.
Try [color=light-red]cd %s[reset]

.
:SHELL_CMD_CHDIR_HINT_3
You are still on drive Z:, change to a mounted drive with [color=light-red]C:[reset].

.
:SHELL_CMD_DATE_HELP
Displays or changes the internal date.

.
:SHELL_CMD_DATE_ERROR
The specified date is not correct.

.
:SHELL_CMD_DATE_DAYS
3SunMonTueWedThuFriSat
.
:SHELL_CMD_DATE_NOW
Current date: 
.
:SHELL_CMD_DATE_SETHLP
Type 'date %s' to change.

.
:SHELL_CMD_DATE_HELP_LONG
Usage:
  [color=green]date[reset] [/t]
  [color=green]date[reset] /h
  [color=green]date[reset] [color=cyan]DATE[reset]

Where:
  [color=cyan]DATE[reset] is the new date to set to, in the format of [color=cyan]%s[reset].

Notes:
  Running [color=green]date[reset] without an argument shows the current date, or only a date
  with the /t option. You can force a date synchronization of with the host
  system with the /h option, or manually specify a new date to set to.

Examples:
  [color=green]date[reset]
  [color=green]date[reset] /h
  [color=green]date[reset] [color=cyan]%s[reset]

.
:SHELL_CMD_TIME_HELP
Displays or changes the internal time.

.
:SHELL_CMD_TIME_ERROR
The specified time is not correct.

.
:SHELL_CMD_TIME_NOW
Current time: 
.
:SHELL_CMD_TIME_SETHLP
Type 'time %s' to change.

.
:SHELL_CMD_TIME_HELP_LONG
Usage:
  [color=green]time[reset] [/t]
  [color=green]time[reset] /h
  [color=green]time[reset] [color=cyan]TIME[reset]

Where:
  [color=cyan]TIME[reset] is the new time to set to, in the format of [color=cyan]%s[reset].

Notes:
  Running [color=green]time[reset] without an argument shows the current time, or a simple time
  with the /t option. You can force a time synchronization of with the host
  system with the /h option, or manually specify a new time to set to.

Examples:
  [color=green]time[reset]
  [color=green]time[reset] /h
  [color=green]time[reset] [color=cyan]%s[reset]

.
:SHELL_CMD_MKDIR_ERROR
Unable to make: %s.

.
:SHELL_CMD_RMDIR_ERROR
Unable to remove: %s.

.
:SHELL_CMD_DEL_ERROR
Unable to delete: %s.

.
:SHELL_SYNTAXERROR
The syntax of the command is incorrect.

.
:SHELL_CMD_SET_NOT_SET
Environment variable %s not defined.

.
:SHELL_CMD_SET_OUT_OF_SPACE
Not enough environment space left.

.
:SHELL_CMD_IF_EXIST_MISSING_FILENAME
IF EXIST: Missing filename.

.
:SHELL_CMD_IF_ERRORLEVEL_MISSING_NUMBER
IF ERRORLEVEL: Missing number.

.
:SHELL_CMD_IF_ERRORLEVEL_INVALID_NUMBER
IF ERRORLEVEL: Invalid number.

.
:SHELL_CMD_GOTO_MISSING_LABEL
No label supplied to GOTO command.

.
:SHELL_CMD_GOTO_LABEL_NOT_FOUND
GOTO: Label %s not found.

.
:SHELL_CMD_FILE_ACCESS_DENIED
Access denied - %s

.
:SHELL_CMD_DUPLICATE_REDIRECTION
Duplicate redirection - %s

.
:SHELL_CMD_FAILED_PIPE

Failed to create/open a temporary file for piping. Check the %%TEMP%% variable.

.
:SHELL_CMD_FILE_CREATE_ERROR
File creation error - %s

.
:SHELL_CMD_FILE_OPEN_ERROR
File open error - %s

.
:SHELL_CMD_FILE_NOT_FOUND
File not found: %s

.
:SHELL_CMD_FILE_EXISTS
File %s already exists.

.
:SHELL_CMD_DIR_VOLUME
 Volume in drive %c is %s

.
:SHELL_CMD_DIR_INTRO
 Directory of %s

.
:SHELL_CMD_DIR_BYTES_USED
%17d file(s) %21s bytes

.
:SHELL_CMD_DIR_BYTES_FREE
%17d dir(s)  %21s bytes free

.
:SHELL_EXECUTE_DRIVE_NOT_FOUND
Drive %c does not exist!
You must [color=light-red]mount[reset] it first. Type [color=yellow]intro[reset] or [color=yellow]intro mount[reset] for more information.

.
:SHELL_EXECUTE_ILLEGAL_COMMAND
Illegal command: %s.

.
:SHELL_CMD_PAUSE
Press a key to continue...
.
:SHELL_CMD_PAUSE_HELP
Waits for a keystroke to continue.

.
:SHELL_CMD_PAUSE_HELP_LONG
Usage:
  [color=green]pause[reset]

Where:
  This command has no parameters.

Notes:
  This command is especially useful in batch programs to allow a user to
  continue the batch program execution with a key press. The user can press
  any key on the keyboard (except for certain control keys) to continue.

Examples:
  [color=green]pause[reset]

.
:SHELL_CMD_COPY_FAILURE
Copy failure : %s.

.
:SHELL_CMD_COPY_SUCCESS
   %d File(s) copied.

.
:SHELL_CMD_SUBST_NO_REMOVE
Unable to remove, drive not in use.

.
:SHELL_CMD_SUBST_FAILURE
SUBST failed. You either made an error in your commandline or the target drive is already used.
It's only possible to use SUBST on Local drives
.
:SHELL_STARTUP_BEGIN
[bgcolor=blue][color=white]╔════════════════════════════════════════════════════════════════════╗
║ [color=green]Welcome to DOSBox Staging %-40s[color=white] ║
║                                                                    ║
║ For a short introduction for new users type: [color=yellow]INTRO[color=white]                 ║
║ For supported shell commands type: [color=yellow]HELP[color=white]                            ║
║                                                                    ║
║ To adjust the emulated CPU speed, use [color=red]%s+F11[color=white] and [color=red]%s+F12[color=white].%s%s       ║
║ To activate the keymapper [color=red]%s+F1[color=white].%s                                 ║
║ For more information read the [color=cyan]README[color=white] file in the DOSBox directory. ║
║                                                                    ║

.
:SHELL_STARTUP_CGA
║ DOSBox supports Composite CGA mode.                                ║
║ Use [color=red]F12[color=white] to set composite output ON, OFF, or AUTO (default).        ║
║ [color=red]F10[color=white] selects the CGA settings to change and [color=red](%s+)F11[color=white] changes it.   ║
║                                                                    ║

.
:SHELL_STARTUP_CGA_MONO
║ Use [color=red]F11[reset] to cycle through green, amber, white and paper-white mode, ║
║ and [color=red]%s+F11[reset] to change contrast/brightness settings.                ║

.
:SHELL_STARTUP_HERC
║ Use [color=red]F11[reset]to cycle through white, amber, and green monochrome color. ║
║                                                                    ║

.
:SHELL_STARTUP_DEBUG
║ Press [color=red]%s+Pause[color=white] to enter the debugger or start the exe with [color=yellow]DEBUG[color=white]. ║
║                                                                    ║

.
:SHELL_STARTUP_END
║ [color=yellow]https://dosbox-staging.github.io[color=white]                                   ║
╚════════════════════════════════════════════════════════════════════╝[reset]


.
:SHELL_STARTUP_SUB
[color=green]dosbox-staging %s[reset]

.
:SHELL_CMD_CHDIR_HELP
Displays or changes the current directory.

.
:SHELL_CMD_CHDIR_HELP_LONG
Usage:
  [color=green]cd[reset] [color=cyan]DIRECTORY[reset]
  [color=green]chdir[reset] [color=cyan]DIRECTORY[reset]

Where:
  [color=cyan]DIRECTORY[reset] is the name of the directory to change to.

Notes:
  Running [color=green]cd[reset] without an argument displays the current directory.
  With [color=cyan]DIRECTORY[reset] the command only changes the directory, not the current drive.

Examples:
  [color=green]cd[reset]
  [color=green]cd[reset] [color=cyan]mydir[reset]

.
:SHELL_CMD_CLS_HELP
Clears the DOS screen.

.
:SHELL_CMD_CLS_HELP_LONG
Usage:
  [color=green]cls[reset]

Where:
  This command has no parameters.

Notes:
  Running [color=green]cls[reset] clears all texts on the DOS screen, except for the command
  prompt (e.g. [color=white]Z:\>[reset] or [color=white]C:\GAMES>[reset]) on the top-left corner of the screen.

Examples:
  [color=green]cls[reset]

.
:SHELL_CMD_DIR_HELP
Displays a list of files and subdirectories in a directory.

.
:SHELL_CMD_DIR_HELP_LONG
Usage:
  [color=green]dir[reset] [color=cyan][PATTERN][reset] [/w] [/b] [/p] [ad] [a-d] [/o[color=white]ORDER[reset]]

Where:
  [color=cyan]PATTERN[reset] is either an exact filename or an inexact filename with wildcards,
          which are the asterisk (*) and the question mark (?). A path can be
          specified in the pattern to list contents in the specified directory.
  [color=white]ORDER[reset]   is a listing order, including [color=white]n[reset] (by name, alphabetic), [color=white]s[reset] (by size,
          smallest first), [color=white]e[reset] (by extension, alphabetic), [color=white]d[reset] (by date/time,
          oldest first), with an optional [color=white]-[reset] prefix to reverse order.
  /w      lists 5 files/directories in a row; /b      lists the names only.
  /o[color=white]ORDER[reset] orders the list (see above)         /p      pauses after each screen.
  /ad     lists all directories;              /a-d    lists all files.

Notes:
  Running [color=green]dir[reset] without an argument lists all files and subdirectories in the
  current directory, which is the same as [color=green]dir[reset] [color=cyan]*.*[reset].

Examples:
  [color=green]dir[reset] [color=cyan][reset]
  [color=green]dir[reset] [color=cyan]games.*[reset] /p
  [color=green]dir[reset] [color=cyan]c:\games\*.exe[reset] /b /o[color=white]-d[reset]

.
:SHELL_CMD_ECHO_HELP
Displays messages and enables/disables command echoing.

.
:SHELL_CMD_ECHO_HELP_LONG
Usage:
  [color=green]echo[reset] [color=cyan][on|off][reset]
  [color=green]echo[reset] [color=cyan][MESSAGE][reset]

Where:
  [color=cyan]on|off[reset]  Turns on/off command echoing.
  [color=cyan]MESSAGE[reset] The message to display.

Notes:
  - Running [color=green]echo[reset] without an argument shows the current on or off status.
  - Echo is especially useful when writing or debugging batch files.

Examples:
  [color=green]echo[reset] [color=cyan]off[reset]
  [color=green]echo[reset] [color=cyan]Hello world![reset]

.
:SHELL_CMD_EXIT_HELP
Exits from the DOS shell.

.
:SHELL_CMD_EXIT_HELP_LONG
Usage:
  [color=green]exit[reset]

Where:
  This command has no parameters.

Notes:
  If you start a DOS shell from a program, running [color=green]exit[reset] returns to the program.
  If there is no DOS program running, the command quits from DOSBox Staging.

Examples:
  [color=green]exit[reset]

.
:SHELL_CMD_EXIT_TOO_SOON
Preventing an early 'exit' call from terminating.

.
:SHELL_CMD_HELP_HELP
Displays help information for DOS commands.

.
:SHELL_CMD_HELP_HELP_LONG
Usage:
  [color=green]help[reset]
  [color=green]help[reset] /a[ll]
  [color=green]help[reset] [color=cyan]COMMAND[reset]

Where:
  [color=cyan]COMMAND[reset] is the name of an internal DOS command, such as [color=cyan]dir[reset].

Notes:
  - Running [color=green]echo[reset] without an argument displays a DOS command list.
  - You can view a full list of internal commands with the /a or /all option.
  - Instead of [color=green]help[reset] [color=cyan]COMMAND[reset], you can also get command help with [color=cyan]COMMAND[reset] /?.

Examples:
  [color=green]help[reset] [color=cyan]dir[reset]
  [color=green]help[reset] /all

.
:SHELL_CMD_INTRO_HELP
Displays a full-screen introduction to DOSBox Staging.

.
:SHELL_CMD_INTRO_HELP_LONG
Usage:
  [color=green]intro[reset]
  [color=green]intro[reset] [color=white]PAGE[reset]

Where:
  [color=white]PAGE[reset] is the page name to display, including [color=white]cdrom[reset], [color=white]mount[reset], and [color=white]special[reset].

Notes:
  Running [color=green]intro[reset] without an argument displays one information page at a time;
  press any key to move to the next page. If a page name is provided, then the
  specified page will be displayed directly.

Examples:
  [color=green]intro[reset]
  [color=green]intro[reset] [color=white]cdrom[reset]

.
:SHELL_CMD_MKDIR_HELP
Creates a directory.

.
:SHELL_CMD_MKDIR_HELP_LONG
Usage:
  [color=green]md[reset] [color=cyan]DIRECTORY[reset]
  [color=green]mkdir[reset] [color=cyan]DIRECTORY[reset]

Where:
  [color=cyan]DIRECTORY[reset] is the name of the directory to create.

Notes:
  - The directory must be an exact name and does not yet exist.
  - You can specify a path where the directory will be created.

Examples:
  [color=green]md[reset] [color=cyan]newdir[reset]
  [color=green]md[reset] [color=cyan]c:\games\dir[reset]

.
:SHELL_CMD_RMDIR_HELP
Removes a directory.

.
:SHELL_CMD_RMDIR_HELP_LONG
Usage:
  [color=green]rd[reset] [color=cyan]DIRECTORY[reset]
  [color=green]rmdir[reset] [color=cyan]DIRECTORY[reset]

Where:
  [color=cyan]DIRECTORY[reset] is the name of the directory to remove.

Notes:
  The directory must be empty with no files or subdirectories.

Examples:
  [color=green]rd[reset] [color=cyan]emptydir[reset]

.
:SHELL_CMD_SET_HELP
Displays or changes environment variables.

.
:SHELL_CMD_SET_HELP_LONG
Usage:
  [color=green]set[reset]
  [color=green]set[reset] [color=white]VARIABLE[reset]=[color=cyan][STRING][reset]

Where:
  [color=white]VARIABLE[reset] The name of the environment variable.
  [color=cyan]STRING[reset]   A series of characters to assign to the variable.

Notes:
  - Assigning an empty string to the variable removes the variable.
  - The command without a parameter displays current environment variables.

Examples:
  [color=green]set[reset]
  [color=green]set[reset] [color=white]name[reset]=[color=cyan]value[reset]

.
:SHELL_CMD_IF_HELP
Performs conditional processing in batch programs.

.
:SHELL_CMD_IF_HELP_LONG
Usage:
  [color=green]if[reset] [color=magenta][not][reset] [color=cyan]errorlevel[reset] [color=white]NUMBER[reset] COMMAND
  [color=green]if[reset] [color=magenta][not][reset] [color=white]STR1==STR2[reset] COMMAND
  [color=green]if[reset] [color=magenta][not][reset] [color=cyan]exist[reset] [color=white]FILE[reset] COMMAND

Where:
  [color=white]NUMBER[reset]     is a positive integer less or equal to the desired value.
  [color=white]STR1==STR2[reset] compares two text strings (case-sensitive).
  [color=white]FILE[reset]       is an exact file name to check for existence.
  COMMAND    is a DOS command or program to run, optionally with parameters.

Notes:
  The COMMAND is run if any of the three conditions in the usage are met.
  If [color=magenta]not[reset] is specified, then the command runs only with the false condition.
  The [color=cyan]errorlevel[reset] condition is useful for checking if a programs ran correctly.
  If either [color=white]STR1[reset] or [color=white]STR2[reset] may be empty, you can enclose them in quotes (").

Examples:
  [color=green]if[reset] [color=cyan]errorlevel[reset] [color=white]2[reset] dir
  [color=green]if[reset] [color=white]"%%myvar%%"=="mystring"[reset] echo Hello world!
  [color=green]if[reset] [color=magenta]not[reset] [color=cyan]exist[reset] [color=white]file.txt[reset] exit

.
:SHELL_CMD_GOTO_HELP
Jumps to a labeled line in a batch program.

.
:SHELL_CMD_GOTO_HELP_LONG
Usage:
  [color=green]goto[reset] [color=cyan]LABEL[reset]

Where:
  [color=cyan]LABEL[reset] is text string used in the batch program as a label.

Notes:
  A label is on a line by itself, beginning with a colon (:).
  The label must be unique, and can be anywhere within the batch program.

Examples:
  [color=green]goto[reset] [color=cyan]mylabel[reset]

.
:SHELL_CMD_SHIFT_HELP
Left-shifts command-line parameters in a batch program.

.
:SHELL_CMD_SHIFT_HELP_LONG
Usage:
  [color=green]shift[reset]

Where:
  This command has no parameters.

Notes:
  This command allows a DOS batch program to accept more than 9 parameters.
  Running [color=green]shift[reset] left-shifts the batch program variable %%1 to %%0, %%2 to %%1, etc.

Examples:
  [color=green]shift[reset]

.
:SHELL_CMD_TYPE_HELP
Display the contents of a text file.

.
:SHELL_CMD_TYPE_HELP_LONG
Usage:
  [color=green]type[reset] [color=cyan]FILE[reset]

Where:
  [color=cyan]FILE[reset] is the name of the file to display.

Notes:
  The file must be an exact file name, optionally with a path.
  This command is only for viewing text files, not binary files.

Examples:
  [color=green]type[reset] [color=cyan]text.txt[reset]
  [color=green]type[reset] [color=cyan]c:\dos\readme.txt[reset]

.
:SHELL_CMD_REM_HELP
Adds comments in a batch program.

.
:SHELL_CMD_REM_HELP_LONG
Usage:
  [color=green]rem[reset] [color=cyan]COMMENT[reset]

Where:
  [color=cyan]COMMENT[reset] is any comment you want to add.

Notes:
  Adding comments to a batch program can make it easier to understand.
  You can also temporarily comment out some commands with this command.

Examples:
  [color=green]rem[reset] [color=cyan]This is my test batch program.[reset]

.
:SHELL_CMD_NO_WILD
This is a simple version of the command, no wildcards allowed!

.
:SHELL_CMD_RENAME_HELP
Renames one or more files.

.
:SHELL_CMD_RENAME_HELP_LONG
Usage:
  [color=green]ren[reset] [color=white]SOURCE[reset] [color=cyan]DESTINATION[reset]
  [color=green]rename[reset] [color=white]SOURCE[reset] [color=cyan]DESTINATION[reset]

Where:
  [color=white]SOURCE[reset]      is the name of the file to rename.
  [color=cyan]DESTINATION[reset] is the new name for the renamed file.

Notes:
  - The source file must be an exact file name, optionally with a path.
  - The destination file must be an exact file name without a path.

Examples:
  [color=green]ren[reset] [color=white]oldname[reset] [color=cyan]newname[reset]
  [color=green]ren[reset] [color=white]c:\dos\file.txt[reset] [color=cyan]f.txt[reset]

.
:SHELL_CMD_DELETE_HELP
Removes one or more files.

.
:SHELL_CMD_DELETE_HELP_LONG
Usage:
  [color=green]del[reset] [color=cyan]PATTERN[reset]
  [color=green]erase[reset] [color=cyan]PATTERN[reset]

Where:
  [color=cyan]PATTERN[reset] can be either an exact filename (such as [color=cyan]file.txt[reset]) or an inexact
          filename using one or more wildcards, which are the asterisk (*)
          representing any sequence of one or more characters, and the question
          mark (?) representing any single character, such as [color=cyan]*.bat[reset] and [color=cyan]c?.txt[reset].

Warning:
  Be careful when using a pattern with wildcards, especially [color=cyan]*.*[reset], as all files
  matching the pattern will be deleted.

Examples:
  [color=green]del[reset] [color=cyan]test.bat[reset]
  [color=green]del[reset] [color=cyan]c*.*[reset]
  [color=green]del[reset] [color=cyan]a?b.c*[reset]

.
:SHELL_CMD_COPY_HELP
Copies one or more files.

.
:SHELL_CMD_COPY_HELP_LONG
Usage:
  [color=green]copy[reset] [color=white]SOURCE[reset] [color=cyan][DESTINATION][reset]
  [color=green]copy[reset] [color=white]SOURCE1+SOURCE2[+...][reset] [color=cyan][DESTINATION][reset]

Where:
  [color=white]SOURCE[reset]      Can be either an exact filename or an inexact filename with
              wildcards, which are the asterisk (*) and the question mark (?).
  [color=cyan]DESTINATION[reset] An exact filename or directory, not containing any wildcards.

Notes:
  The [color=white]+[reset] operator combines multiple source files provided to a single file.
  Destination is optional: if omitted, files are copied to the current path.

Examples:
  [color=green]copy[reset] [color=white]source.bat[reset] [color=cyan]new.bat[reset]
  [color=green]copy[reset] [color=white]file1.txt+file2.txt[reset] [color=cyan]file3.txt[reset]
  [color=green]copy[reset] [color=white]..\c*.*[reset]

.
:SHELL_CMD_CALL_HELP
Starts a batch program from within another batch program.

.
:SHELL_CMD_CALL_HELP_LONG
Usage:
  [color=green]call[reset] [color=white]BATCH[reset] [color=cyan][PARAMETERS][reset]

Where:
  [color=white]BATCH[reset]      is a batch program to launch.
  [color=cyan]PARAMETERS[reset] are optional parameters for the batch program.

Notes:
  After calling another batch program, the original batch program will
  resume running after the other batch program ends.

Examples:
  [color=green]call[reset] [color=white]mybatch.bat[reset]
  [color=green]call[reset] [color=white]file.bat[reset] [color=cyan]Hello world![reset]

.
:SHELL_CMD_SUBST_HELP
Assign an internal directory to a drive.

.
:SHELL_CMD_SUBST_HELP_LONG
Usage:
  [color=green]subst[reset] [color=white]DRIVE[reset] [color=cyan]PATH[reset]
  [color=green]subst[reset] [color=white]DRIVE[reset] /d

Where:
  [color=white]DRIVE[reset] is a drive to which you want to assign a path.
  [color=cyan]PATH[reset]  is a mounted DOS path you want to assign to.

Notes:
  The path must be on a drive mounted by the [color=green]mount[reset] command.
  You can remove an assigned drive with the /d option.

Examples:
  [color=green]subst[reset] [color=white]d:[reset] [color=cyan]c:\games[reset]
  [color=green]subst[reset] [color=white]e:[reset] [color=cyan]/d[reset]

.
:SHELL_CMD_LOADHIGH_HELP
Loads a DOS program into upper memory.

.
:SHELL_CMD_LOADHIGH_HELP_LONG
Usage:
  [color=green]lh[reset] [color=cyan]PROGRAM[reset] [color=white][PARAMETERS][reset]
  [color=green]loadhigh[reset] [color=cyan]PROGRAM[reset] [color=white][PARAMETERS][reset]

Where:
  [color=cyan]PROGRAM[reset] is a DOS TSR program to be loaded, optionally with parameters.

Notes:
  This command intends to save the conventional memory by loading specified DOS
  TSR programs into upper memory if possible. Such programs may be required for
  some DOS games; XMS and UMB memory must be enabled (xms=true and umb=true).
  Not all DOS TSR programs can be loaded into upper memory with this command.

Examples:
  [color=green]lh[reset] [color=cyan]tsrapp[reset] [color=white]args[reset]

.
:SHELL_CMD_LS_HELP
Displays directory contents in the wide list format.

.
:SHELL_CMD_LS_HELP_LONG
Usage:
  [color=green]ls[reset] [color=cyan]PATTERN[reset]
  [color=green]ls[reset] [color=cyan]PATH[reset]

Where:
  [color=cyan]PATTERN[reset] can be either an exact filename or an inexact filename with
          wildcards, which are the asterisk (*) and the question mark (?).
  [color=cyan]PATH[reset]    is an exact path in a mounted DOS drive to list contents.

Notes:
  The command will list directories in [color=blue]blue[reset], executable DOS programs
   (*.com, *.exe, *.bat) in [color=green]green[reset], and other files in the normal color.

Examples:
  [color=green]ls[reset] [color=cyan]file.txt[reset]
  [color=green]ls[reset] [color=cyan]c*.ba?[reset]

.
:SHELL_CMD_LS_PATH_ERR
ls: cannot access '%s': No such file or directory

.
:SHELL_CMD_ATTRIB_HELP
Displays or changes file attributes.

.
:SHELL_CMD_ATTRIB_HELP_LONG
Usage:
  [color=green]attrib[reset] [color=white][ATTRIBUTES][reset] [color=cyan]PATTERN[reset] [/S]

Where:
  [color=white]ATTRIBUTES[reset] are attributes to apply, including one or more of the following:
             [color=white]+R[reset], [color=white]-R[reset], [color=white]+A[reset], [color=white]-A[reset], [color=white]+S[reset], [color=white]-S[reset], [color=white]+H[reset], [color=white]-H[reset]
             Where: R = Read-only, A = Archive, S = System, H = Hidden
  [color=cyan]PATTERN[reset]    can be either an exact filename or an inexact filename with
             wildcards, which are the asterisk (*) and the question mark (?),
             or an exact name of a directory.
Notes:
  Multiple attributes can be specified in the command, separated by spaces.
  If not specified, the command shows the current file/directory attributes.

Examples:
  [color=green]attrib[reset] [color=cyan]file.txt[reset]
  [color=green]attrib[reset] [color=white]+R[reset] [color=white]-A[reset] [color=cyan]*.txt[reset]

.
:SHELL_CMD_ATTRIB_GET_ERROR
Unable to get attributes: %s

.
:SHELL_CMD_ATTRIB_SET_ERROR
Unable to set attributes: %s

.
:SHELL_CMD_CHOICE_HELP
Waits for a keypress and sets an ERRORLEVEL value.

.
:SHELL_CMD_CHOICE_HELP_LONG
Usage:
  [color=green]choice[reset] [color=cyan][TEXT][reset]
  [color=green]choice[reset] /c[:][color=white]CHOICES[reset] /n /s /t[:][color=white]c[reset],[color=magenta]nn[reset] [color=cyan][TEXT][reset]

Where:
  [color=cyan]TEXT[reset]         is the text to display as a prompt, or empty.
  /c[:][color=white]CHOICES[reset] Specifies allowable keys, which default to [color=white]yn[reset].
  /n           Do not display the choices at end of prompt.
  /s           Enables case-sensitive choices to be selected.
  /t[:][color=white]c[reset],[color=magenta]nn[reset]    Default choice to [color=white]c[reset] after [color=magenta]nn[reset] seconds.

Notes:
  This command sets an ERRORLEVEL value starting from 1 according to the
  allowable keys specified in /c option, and the user input can then be checked
  with [color=green]if[reset] command. With /n option only the specified text will be displayed,
  but not the actual choices (such as the default [color=white][Y,N]?[reset]) in the end.

Examples:
  [color=green]choice[reset] /t:[color=white]y[reset],[color=magenta]2[reset] [color=cyan]Continue?[reset]
  [color=green]choice[reset] /c:[color=white]abc[reset] /s [color=cyan]Type the letter a, b, or c[reset]

.
:SHELL_CMD_CHOICE_EOF

[color=red]Choice failed[reset]: the input stream ended without a valid choice.

.
:SHELL_CMD_CHOICE_ABORTED

[color=yellow]Choice aborted.[reset]

.
:SHELL_CMD_PATH_HELP
Displays or sets a search path for executable files.

.
:SHELL_CMD_PATH_HELP_LONG
Usage:
  [color=green]path[reset]
  [color=green]path[reset] [color=cyan][[drive:]path[;...][reset]

Where:
  [color=cyan][[drive:]path[;...][reset] is a path containing a drive and directory.
  More than one path can be specified, separated by a semi-colon (;).

Notes:
  Parameter with a semi-colon (;) only clears all search path settings.
  The path can also be set using [color=green]set[reset] command, e.g. [color=green]set[reset] [color=white]path[reset]=[color=cyan]Z:\[reset]

Examples:
  [color=green]path[reset]
  [color=green]path[reset] [color=cyan]Z:\;C:\DOS[reset]

.
:SHELL_CMD_VER_HELP
View or set the reported DOS version.

.
:SHELL_CMD_VER_HELP_LONG
Usage:
  [color=green]ver[reset]
  [color=green]ver[reset] [color=white]set[reset] [color=cyan]VERSION[reset]

Where:
  [color=cyan]VERSION[reset] can be a whole number, such as [color=cyan]5[reset], or include a two-digit decimal
          value, such as: [color=cyan]6.22[reset], [color=cyan]7.01[reset], or [color=cyan]7.10[reset]. The decimal can alternatively be
          space-separated, such as: [color=cyan]6 22[reset], [color=cyan]7 01[reset], or [color=cyan]7 10[reset].

Notes:
  The DOS version can also be set in the configuration file under the [dos]
  section using the "ver = [color=cyan]VERSION[reset]" setting.

Examples:
  [color=green]ver[reset] [color=white]set[reset] [color=cyan]6.22[reset]
  [color=green]ver[reset] [color=white]set[reset] [color=cyan]7 10[reset]

.
:SHELL_CMD_VER_VER
DOSBox Staging version %s
DOS version %d.%02d

.
:SHELL_CMD_VER_INVALID
The specified DOS version is not correct.

.
:HELP_UTIL_CATEGORY_DOSBOX
DOSBox Commands
.
:HELP_UTIL_CATEGORY_FILE
File/Directory Commands
.
:HELP_UTIL_CATEGORY_BATCH
Batch File Commands
.
:HELP_UTIL_CATEGORY_MISC
Miscellaneous Commands
.
:HELP_UTIL_CATEGORY_UNKNOWN
Unknown Command
.