-
Notifications
You must be signed in to change notification settings - Fork 0
/
msdos.cfg
175 lines (142 loc) · 2.2 KB
/
msdos.cfg
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
path = "."
path = "rom"
system {
model = "5150"
boot = 0
rtc = 1
memtest = 1
floppy_disk_drives = 2
patch_bios_init = 1
patch_bios_int19 = 1
}
cpu {
model = "8088"
speed = 24
}
ram {
address = 0
size = 128K
default = 0x00
}
rom {
address = 0xf0000
size = 64K
default = 0xFF
}
load {
format = "binary"
address = 0xfe000
file = "rom/ibm-pc-1982-10-27.rom"
}
load {
format = "binary"
address = 0xf6000
file = "rom/ibm-basic-1.10.rom"
}
load {
format = "binary"
address = 0xf0000
file = "rom/ibmpc-pcex.rom"
}
terminal {
driver = "sdl"
escape = "F12"
scale = 1
border = 0
fullscreen = 0
mouse_mul_x = 1
mouse_div_x = 1
mouse_mul_y = 1
mouse_div_y = 1
}
terminal {
driver = "null"
}
video {
device = "vga"
blink = 16
enable_irq = 0
irq = 2
rom {
address = 0xc0000
size = 24K
default = 0xff
file = "rom/ibm-vga.rom"
}
}
video {
device = "ega"
switches = 0x09
blink = 16
enable_irq = 0
irq = 2
rom {
address = 0xc0000
size = 16K
default = 0xff
file = "rom/ibm-ega.rom"
}
}
video {
device = "cga"
font = 1
blink = 30
}
video {
device = "hgc"
color = "amber"
blink = 30
}
video {
device = "mda"
color = "green"
blink = 30
}
speaker {
volume = 250
lowpass = 8000
sample_rate = 44100
driver = "sdl:lowpass=0"
}
serial {
uart = "8250"
address = 0x3f8
irq = 4
multichar = 1
driver = "stdio:file=/dev/null:flush=1"
}
serial {
uart = "8250"
address = 0x2f8
irq = 3
multichar = 1
driver = "mouse:protocol=microsoft"
}
parport {
address = 0x378
driver = "stdio:file=/dev/null:flush=1"
}
parport {
address = 0x278
driver = "stdio:file=/dev/null:flush=1"
}
fdc {
address = 0x3f0
irq = 6
drive0 = 0x00
drive1 = 0x01
accurate = 0
ignore_eot = 0
}
disk {
drive = 0x00
type = "auto"
file = "msdos_full.img"
optional = 0
}
disk {
drive = 0x01
type = "auto"
file = "private/apps.img"
optional = 1
}