forked from gardners/c65gs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor_drive.c
271 lines (251 loc) · 7.21 KB
/
monitor_drive.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
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
/*
LOAD wedge for C65GS serial monitor.
Activates a break point at $F4A2, and then checks periodically to see if the
CPU is there. If so, extract file name, look for it in search path, and
then either load it, set X & Y to upper address, and then return success (gf5a9),
or return file not found error (gf704), and then resume the CPU (t0).
Copyright (C) 2014 Paul Gardner-Stephen
Portions Copyright (C) 2013 Serval Project Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>
#include <time.h>
#include <strings.h>
#include <string.h>
#include <ctype.h>
#include <sys/time.h>
#include <errno.h>
int process_char(unsigned char c,int live);
int slow_write(int fd,char *d,int l)
{
// UART is at 230400bps, but reading commands has no FIFO, and echos
// characters back, meaning we need a 1 char gap between successive
// characters. This means >=1/23040sec delay. We'll allow roughly
// double that at 100usec.
// printf("Writing [%s]\n",d);
int i;
for(i=0;i<l;i++)
{
usleep(100);
write(fd,&d[i],1);
}
return 0;
}
int fd=-1;
int state=99;
int name_len,name_lo,name_hi,name_addr=-1;
char filename[17];
FILE *f=NULL;
char *search_path=".";
unsigned long long gettime_ms()
{
struct timeval nowtv;
// If gettimeofday() fails or returns an invalid value, all else is lost!
if (gettimeofday(&nowtv, NULL) == -1)
perror("gettimeofday");
return nowtv.tv_sec * 1000LL + nowtv.tv_usec / 1000;
}
int process_line(char *line,int live)
{
int pc,a,x,y,sp,p;
int addr;
char filename[17];
// printf("[%s]\n",line);
if (!live) return 0;
if (sscanf(line,"%04x %02x %02x %02x %02x %02x",
&pc,&a,&x,&y,&sp,&p)==6) {
printf("PC=$%04x\n",pc);
if (pc==0xf4a5||pc==0xf4a2) {
// Intercepted LOAD command
state=1;
} else {
if (state==99) {
// Synchronised with monitor
state=0;
// Send ^U r <return> to print registers and get into a known state.
usleep(20000);
slow_write(fd,"\r",1);
usleep(50000);
slow_write(fd,"bf4a2\r",6); // Also setup breakpoint
usleep(20000);
slow_write(fd,"sffd0c01 0\r",11); // and make keyboard workaround CIA bug
usleep(20000);
slow_write(fd,"t0\r",3); // and set CPU going
usleep(20000);
printf("Synchronised with monitor.\n");
}
}
}
if (sscanf(line," :00000B7 %02x %*02x %*02x %*02x %02x %02x",
&name_len,&name_lo,&name_hi)==3) {
name_addr=(name_hi<<8)+name_lo;
printf("Filename is %d bytes long, and is stored at $%04x\n",
name_len,name_addr);
snprintf(filename,16,"m%04x\r",name_addr);
slow_write(fd,filename,strlen(filename));
state=0;
}
if (sscanf(line," :%07x"
" %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx"
" %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx %02hhx",
&addr,
&filename[0],&filename[1],&filename[2],&filename[3],
&filename[4],&filename[5],&filename[6],&filename[7],
&filename[8],&filename[9],&filename[10],&filename[11],
&filename[12],&filename[13],&filename[14],&filename[15])==17) {
if (addr==name_addr) {
// Got filename to load
filename[16]=0;
filename[name_len]=0;
// Invert case
int i; for(i=0;i<name_len;i++) if (isalpha(filename[i])) filename[i]^=0x20;
printf("Filename is %s\n",filename);
char fullname[1024];
snprintf(fullname,1024,"%s/%s",search_path,filename);
f=fopen(fullname,"r");
if (f==NULL) {
// file not found error
usleep(10000);
slow_write(fd,"gf704\r",6);
usleep(10000);
slow_write(fd,"t0\r",3);
usleep(10000);
} else {
int load_addr=fgetc(f);
load_addr|=fgetc(f)<<8;
printf("Load address is $%04x\n",load_addr);
usleep(10000);
unsigned char buf[1024];
int b=fread(buf,1,1024,f);
while(b>0) {
int i;
int n;
for(i=0;i<b;i+=16) {
if ((i+16)>b) n=b-i; else n=16;
char cmd[64];
printf("Read to $%04x\r",load_addr);
fflush(stdout);
// XXX - writes 16 bytes even if there are less bytes ready.
sprintf(cmd,"s%x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\r",
load_addr,
buf[i+0],buf[i+1],buf[i+2],buf[i+3],buf[i+4],buf[i+5],buf[i+6],buf[i+7],
buf[i+8],buf[i+9],buf[i+10],buf[i+11],buf[i+12],buf[i+13],buf[i+14],buf[i+15]);
slow_write(fd,cmd,strlen(cmd));
usleep(2000);
load_addr+=n;
{
unsigned char read_buff[1024];
int b=read(fd,read_buff,1024);
if (b>0) {
int i;
for(i=0;i<b;i++) {
process_char(read_buff[i],0);
}
}
}
}
b=fread(buf,1,1024,f);
}
fclose(f); f=NULL;
printf("\n");
// loaded ok.
char cmd[64];
snprintf(cmd,64,"s9ff0 18 a9 00 a2 %02x a0 %02x 4c a9 f5\r",
load_addr&0xff,(load_addr>>8)&0xff);
usleep(10000);
slow_write(fd,cmd,strlen(cmd));
usleep(10000);
slow_write(fd,"g9ff0\r",6);
usleep(10000);
slow_write(fd,"t0\r",3);
usleep(10000);
}
}
}
return 0;
}
char line[1024];
int line_len=0;
int process_char(unsigned char c, int live)
{
// printf("char $%02x\n",c);
if (c=='\r'||c=='\n') {
line[line_len]=0;
if (line_len>0) process_line(line,live);
line_len=0;
} else {
if (line_len<1023) line[line_len++]=c;
}
return 0;
}
int main(int argc,char **argv)
{
search_path=argv[2];
errno=0;
fd=open(argv[1],O_RDWR);
perror("A");
if (fd==-1) perror("open");
perror("B");
fcntl(fd,F_SETFL,fcntl(fd, F_GETFL, NULL)|O_NONBLOCK);
perror("C");
struct termios t;
if (cfsetospeed(&t, B230400)) perror("Failed to set output baud rate");
perror("D");
if (cfsetispeed(&t, B230400)) perror("Failed to set input baud rate");
perror("E");
t.c_cflag &= ~PARENB;
t.c_cflag &= ~CSTOPB;
t.c_cflag &= ~CSIZE;
t.c_cflag &= ~CRTSCTS;
t.c_cflag |= CS8 | CLOCAL;
t.c_lflag &= ~(ICANON | ISIG | IEXTEN | ECHO | ECHOE);
t.c_iflag &= ~(BRKINT | ICRNL | IGNBRK | IGNCR | INLCR |
INPCK | ISTRIP | IXON | IXOFF | IXANY | PARMRK);
t.c_oflag &= ~OPOST;
if (tcsetattr(fd, TCSANOW, &t)) perror("Failed to set terminal parameters");
perror("F");
unsigned long long last_check = gettime_ms();
while(1)
{
int b;
char read_buff[1024];
switch(state) {
case 0: case 99:
errno=0;
b=read(fd,read_buff,1024);
if (b>0) {
int i;
for(i=0;i<b;i++) {
process_char(read_buff[i],1);
}
} else {
usleep(1000);
}
if (gettime_ms()>last_check) {
if (state==99) printf("sending R command to sync.\n");
slow_write(fd,"r\r",2);
last_check=gettime_ms()+50;
}
break;
case 1: // trapped LOAD, so read file name
slow_write(fd,"mb7\r",4);
state=0;
break;
}
}
return 0;
}