-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcpm_bios.go
466 lines (374 loc) · 9.83 KB
/
cpm_bios.go
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
// This file implements the BIOS function-calls.
//
// These are documented online:
//
// * https://www.seasip.info/Cpm/bios.html
package cpm
import (
"fmt"
"log/slog"
"os"
"strings"
"golang.org/x/term"
"github.com/koron-go/z80"
"github.com/skx/cpmulator/ccp"
"github.com/skx/cpmulator/consolein"
"github.com/skx/cpmulator/consoleout"
"github.com/skx/cpmulator/version"
)
// BiosSysCallColdBoot handles a cold boot.
func BiosSysCallColdBoot(cpm *CPM) error {
// Set entry-point to 0x0000 which will result in
// a boot-trap.
cpm.CPU.States.PC = 0x0000
return nil
}
// BiosSysCallWarmBoot handles a warm boot.
func BiosSysCallWarmBoot(cpm *CPM) error {
// Set entry-point to 0x0000 which will result in
// a boot-trap.
cpm.CPU.States.PC = 0x0000
return nil
}
// BiosSysCallConsoleStatus should return 0x00 if there is no input
// pending, otherwise 0xFF.
func BiosSysCallConsoleStatus(cpm *CPM) error {
if cpm.input.PendingInput() {
cpm.CPU.States.AF.Hi = 0xFF
} else {
cpm.CPU.States.AF.Hi = 0x00
}
return nil
}
// BiosSysCallConsoleInput should block for a single character of input,
// and return the character pressed in the A-register.
func BiosSysCallConsoleInput(cpm *CPM) error {
out, err := cpm.input.BlockForCharacterNoEcho()
cpm.CPU.States.AF.Hi = out
return err
}
// BiosSysCallConsoleOutput should write a single character, in the C-register,
// to the console.
func BiosSysCallConsoleOutput(cpm *CPM) error {
// Write the character in C to the screen.
c := cpm.CPU.States.BC.Lo
cpm.output.PutCharacter(c)
return nil
}
// BiosSysCallPrintChar should print the specified character, in the C-register,
// to the printer. We fake that and write to a file instead.
func BiosSysCallPrintChar(cpm *CPM) error {
// Write the character in C to the printer
c := cpm.CPU.States.BC.Lo
// Write the character to the printer
err := cpm.prnC(c)
return err
}
// BiosSysCallPrinterStatus returns status of current printer device.
//
// This is fake, and always returns "ready".
func BiosSysCallPrinterStatus(cpm *CPM) error {
// Ready
cpm.CPU.States.AF.Hi = 0xFF
return nil
}
// BiosSysCallScreenOutputStatus returns status of current screen output device.
//
// This is fake, and always returns "ready".
func BiosSysCallScreenOutputStatus(cpm *CPM) error {
// Ready
cpm.CPU.States.AF.Hi = 0xFF
return nil
}
// BiosSysCallAuxInputStatus returns status of current auxiliary input device.
//
// This is fake, and always returns "ready".
func BiosSysCallAuxInputStatus(cpm *CPM) error {
// Ready
cpm.CPU.States.AF.Hi = 0xFF
return nil
}
// BiosSysCallAuxOutputStatus returns status of current auxiliary output device.
//
// This is fake, and always returns "ready".
func BiosSysCallAuxOutputStatus(cpm *CPM) error {
// Ready
cpm.CPU.States.AF.Hi = 0xFF
return nil
}
// BiosSysCallReserved1 is a helper to get/set the values of the CPM interpreter from
// within the system. Neat.
func BiosSysCallReserved1(cpm *CPM) error {
// H is used to specify the function.
//
// HL == 0
// Are we running under cpmulator? We always say yes!
//
// HL == 1
// C == 0xff to get the ctrl-c count
// C != 0xff to set the ctrl-c count
// ...
//
hl := cpm.CPU.States.HL.U16()
c := cpm.CPU.States.BC.Lo
de := cpm.CPU.States.DE.U16()
//
// Helper to read a null/space terminated string from
// memory.
//
// Here because several of our custom syscalls need to
// read a string from the caller.
//
getStringFromMemory := func(addr uint16) string {
str := ""
x := cpm.Memory.Get(addr)
for x != ' ' && x != 0x00 {
str += string(x)
addr++
x = cpm.Memory.Get(addr)
}
// Useful when the CCP has passed a string, because
// that uppercases all input
return strings.ToLower(str)
}
switch hl {
// Is this a CPMUlator?
case 0x0000:
// Magic values in the registers
cpm.CPU.States.HL.Hi = 'S'
cpm.CPU.States.HL.Lo = 'K'
cpm.CPU.States.AF.Hi = 'X'
// Get our version
vers := version.GetVersionBanner()
vers = strings.ReplaceAll(vers, "\n", "\n\r")
// Fill the DMA area with NULL bytes
addr := cpm.dma
end := addr + uint16(127)
for end > addr {
cpm.Memory.Set(end, 0x00)
end--
}
// now populate with our name/version/information
for i, c := range vers {
cpm.Memory.Set(addr+uint16(i), uint8(c))
}
return nil
// Get/Set the ctrl-c flag
case 0x0001:
if c == 0xFF {
cpm.CPU.States.AF.Hi = uint8(cpm.input.GetInterruptCount())
} else {
cpm.input.SetInterruptCount(int(c))
}
// Get/Set the input driver.
case 0x0002:
if de == 0x0000 {
// Fill the DMA area with NULL bytes
addr := cpm.dma
end := addr + uint16(127)
for end > addr {
cpm.Memory.Set(end, 0x00)
end--
}
// now populate with our console driver
str := cpm.output.GetName()
for i, c := range str {
cpm.Memory.Set(addr+uint16(i), uint8(c))
}
return nil
}
// Get the string pointed to by DE
str := getStringFromMemory(de)
// Output driver needs to be created
driver, err := consoleout.New(str)
// If it failed we're not going to terminate the syscall, or
// the emulator, just ignore the attempt.
if err != nil {
fmt.Printf("%s", err)
return nil
}
old := cpm.output.GetName()
cpm.output = driver
if old != str {
fmt.Printf("Input driver changed from %s to %s.\n", old, driver.GetName())
}
// Get/Set the CCP
case 0x0003:
if de == 0x0000 {
// Fill the DMA area with NULL bytes
addr := cpm.dma
end := addr + uint16(127)
for end > addr {
cpm.Memory.Set(end, 0x00)
end--
}
// now populate with our CCP
str := cpm.ccp
for i, c := range str {
cpm.Memory.Set(addr+uint16(i), uint8(c))
}
return nil
}
// Get the string pointed to by DE
str := getStringFromMemory(de)
// See if the CCP exists
entry, err := ccp.Get(str)
if err != nil {
fmt.Printf("Invalid CCP name %s\n", str)
return nil
}
// old value
old := cpm.ccp
cpm.ccp = str
if old != str {
fmt.Printf("CCP changed to %s [%s] Size:0x%04X Entry-Point:0x%04X\n", str, entry.Description, len(entry.Bytes), entry.Start)
}
// Get/Set the quiet flag
case 0x0004:
// Retired.
return nil
// Get terminal size in HL
case 0x0005:
width, height, err := term.GetSize(int(os.Stdin.Fd()))
// This will fail on tests, and Windows probably.
cpm.CPU.States.HL.Hi = uint8(height)
cpm.CPU.States.HL.Lo = uint8(width)
if err != nil {
return err
}
// Get/Set the debug-flag
case 0x0006:
// if C == 00
// Disable debug
//
// if C == 01
// Enable debug
//
// If C == 0xFF
// Return the statues of the flag in C.
//
if c == 0x00 {
cpm.simpleDebug = false
}
if c == 0x01 {
cpm.simpleDebug = true
}
if c == 0xFF {
if cpm.simpleDebug {
cpm.CPU.States.BC.Lo = 0x01
} else {
cpm.CPU.States.BC.Lo = 0x00
}
}
// Get/Set the output driver.
case 0x0007:
if de == 0x0000 {
// Fill the DMA area with NULL bytes
addr := cpm.dma
end := addr + uint16(127)
for end > addr {
cpm.Memory.Set(end, 0x00)
end--
}
// now populate with our console driver
str := cpm.input.GetName()
for i, c := range str {
cpm.Memory.Set(addr+uint16(i), uint8(c))
}
return nil
}
// Get the string pointed to by DE
str := getStringFromMemory(de)
// Output driver needs to be created
driver, err := consolein.New(str)
// If it failed we're not going to terminate the syscall, or
// the emulator, just ignore the attempt.
if err != nil {
fmt.Printf("%s", err)
return nil
}
old := cpm.input
oldName := old.GetName()
old.TearDown()
driver.Setup()
cpm.input = driver
if oldName != str {
fmt.Printf("Input driver from %s to %s.\n", oldName, driver.GetName())
}
// Set the host prefix
case 0x0008:
if de == 0x0000 {
// Fill the DMA area with NULL bytes
addr := cpm.dma
end := addr + uint16(127)
for end > addr {
cpm.Memory.Set(end, 0x00)
end--
}
// now populate with our current value
str := cpm.input.GetSystemCommandPrefix()
for i, c := range str {
cpm.Memory.Set(addr+uint16(i), uint8(c))
}
return nil
}
// Get the string pointed to by DE
str := getStringFromMemory(de)
// set it
cpm.input.SetSystemCommandPrefix(str)
default:
fmt.Printf("Unknown custom BIOS function HL:%04X, ignoring", hl)
}
return nil
}
// BiosHandler is involved when a BIOS syscall needs to be executed,
// which is handled via a small trampoline.
//
// These are looked up in the BIOSSyscalls map.
func (cpm *CPM) BiosHandler(val uint8) {
// Lookup the handler
handler, ok := cpm.BIOSSyscalls[val]
// If it doesn't exist we don't have it implemented.
if !ok {
slog.Error("Unimplemented BIOS syscall",
slog.Int("syscall", int(val)),
slog.String("syscallHex", fmt.Sprintf("0x%02X", val)))
// record the error
cpm.biosErr = ErrUnimplemented
// halt processing.
cpm.CPU.HALT = true
// stop now.
return
}
if !handler.Noisy {
// show the function being invoked.
if cpm.simpleDebug {
fmt.Printf("%03d %s\n", val, handler.Desc)
}
// Log the call we're going to make
slog.Info("BIOS",
slog.String("name", handler.Desc),
slog.Int("syscall", int(val)),
slog.String("syscallHex", fmt.Sprintf("0x%02X", val)),
slog.Group("registers",
slog.String("AF", fmt.Sprintf("%04X", cpm.CPU.States.AF.U16())),
slog.String("BC", fmt.Sprintf("%04X", cpm.CPU.States.BC.U16())),
slog.String("DE", fmt.Sprintf("%04X", cpm.CPU.States.DE.U16())),
slog.String("HL", fmt.Sprintf("%04X", cpm.CPU.States.HL.U16()))))
}
// Otherwise invoke it, and look for any error
err := handler.Handler(cpm)
// If there was an error then record it for later notice.
if err != nil {
// record the error
cpm.biosErr = err
// halt processing.
cpm.CPU.HALT = true
}
// If A == 0x00 then we set the zero flag
if cpm.CPU.States.AF.Hi == 0x00 {
cpm.CPU.SetFlag(z80.FlagZ)
} else {
cpm.CPU.ResetFlag(z80.FlagZ)
}
}