-
Notifications
You must be signed in to change notification settings - Fork 0
/
ersatz.c
179 lines (156 loc) · 3.78 KB
/
ersatz.c
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
/*
* UAE - The Un*x Amiga Emulator
*
* A "replacement" for a missing Kickstart
* Warning! Q&D
*
* (c) 1995 Bernd Schmidt
*/
#include <stdio.h>
#include <stdlib.h>
#include "config.h"
#include "amiga.h"
#include "options.h"
#include "memory.h"
#include "custom.h"
#include "newcpu.h"
#include "cia.h"
#include "disk.h"
#include "ersatz.h"
#define EOP_INIT 0
#define EOP_NIMP 1
#define EOP_SERVEINT 2
#define EOP_DOIO 3
#define EOP_OPENLIB 4
#define EOP_AVAILMEM 5
#define EOP_ALLOCMEM 6
#define EOP_ALLOCABS 7
void init_ersatz_rom (UWORD *data)
{
fprintf(stderr, "Trying to use Kickstart replacement.\n");
*data++ = 0x0008; /* initial SP */
*data++ = 0;
*data++ = 0x00F8; /* initial PC */
*data++ = 0x0008;
*data++ = 0xF00D;
*data++ = EOP_INIT;
*data++ = 0xF00D;
*data++ = EOP_NIMP;
*data++ = 0xF00D;
*data++ = EOP_DOIO;
*data++ = 0x4E75;
*data++ = 0xF00D;
*data++ = EOP_SERVEINT;
*data++ = 0x4E73;
*data++ = 0xF00D;
*data++ = EOP_AVAILMEM;
*data++ = 0x4E75;
*data++ = 0xF00D;
*data++ = EOP_ALLOCMEM;
*data++ = 0x4E75;
*data++ = 0xF00D;
*data++ = EOP_ALLOCABS;
*data++ = 0x4E75;
}
static void ersatz_doio (void)
{
CPTR request = regs.a[1];
switch (get_word (request + 0x1C)) {
case 9: /* TD_MOTOR is harmless */
case 2: case 0x8002: /* READ commands */
break;
default:
fprintf(stderr, "Only CMD_READ supported in DoIO()\n");
abort();
}
{
CPTR dest = get_long (request + 0x28);
int start = get_long (request + 0x2C) / 512;
int nsecs = get_long (request + 0x24) / 512;
int tr = start / 11;
int sec = start % 11;
while (nsecs--) {
DISK_ersatz_read (tr, sec, dest);
dest += 512;
if (++sec == 11)
sec = 0, tr++;
}
}
}
static void ersatz_init (void)
{
int f;
CPTR request;
CPTR a;
regs.s = 0;
/* Set some interrupt vectors */
for (a = 8; a < 0xC0; a += 4) {
put_long (a, 0xF80016);
}
regs.usp = 0x80000;
regs.a[7] = 0x7F000;
regs.intmask = 0;
/* Build a dummy execbase */
put_long (4, regs.a[6] = 0x676);
put_byte (0x676 + 0x129, 0);
for (f = 1; f < 105; f++) {
put_word (0x676 - 6*f, 0x4EF9);
put_long (0x676 - 6*f + 2, 0xF8000C);
}
/* Some "supported" functions */
put_long (0x676 - 456 + 2, 0xF80010);
put_long (0x676 - 216 + 2, 0xF8001C);
put_long (0x676 - 198 + 2, 0xF80022);
put_long (0x676 - 204 + 2, 0xF80028);
put_long (0x676 - 210 + 2, 0xF80026);
/* Build an IORequest */
request = 0x800;
put_word (request + 0x1C, 2);
put_long (request + 0x28, 0x4000);
put_long (request + 0x2C, 0);
put_long (request + 0x24, 0x200 * 4);
regs.a[1] = request;
ersatz_doio ();
m68k_setpc (0x400C);
/* Init the hardware */
put_long (0x3000, 0xFFFFFFFE);
put_long (0xDFF080, 0x3000);
put_word (0xDFF088, 0);
put_word (0xDFF096, 0xE390);
put_word (0xDFF09A, 0xE02C);
put_word (0xDFF092, 0x0038);
put_word (0xDFF094, 0x00D0);
put_word (0xDFF08E, 0x2C81);
put_word (0xDFF090, 0xF4C1);
}
void ersatz_perform (UWORD what)
{
switch (what) {
case EOP_INIT:
ersatz_init ();
break;
case EOP_SERVEINT:
/* Just reset all the interrupt request bits */
put_word (0xDFF09C, get_word (0xDFF01E) & 0x3FFF);
break;
case EOP_DOIO:
ersatz_doio ();
break;
case EOP_AVAILMEM:
regs.d[0] = regs.d[1] & 4 ? 0 : 0x70000;
break;
case EOP_ALLOCMEM:
regs.d[0] = regs.d[1] & 4 ? 0 : 0x0F000;
break;
case EOP_ALLOCABS:
regs.d[0] = regs.a[1];
break;
case EOP_NIMP:
fprintf(stderr, "Unimplemented Kickstart function called\n");
abort ();
case EOP_OPENLIB:
default:
fprintf(stderr, "Internal error. Giving up.\n");
abort ();
}
}