-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdsr_files.c
56 lines (48 loc) · 1.48 KB
/
dsr_files.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
// DSR interface code for the TI-99/4A by Tursi
// You can copy this file and use it at will ;)
#include "files.h"
#ifdef TI99
unsigned int __attribute__((noinline)) searchdofiles(unsigned int base) {
unsigned int ret;
*(unsigned int*)0x83f8 = base; // GPLWS R12
// TODO: we could rewrite the rest of this in C, just adding support for SBO, SBZ and the actual call which
// needs to be wrapped with LWPI....
__asm__ volatile (
"seto %0 ; not found\n\t"
"lwpi 0x83e0 ; gplws\n\t"
"sbo 0 ; turn on the rom (set above)\n\t"
"mov @0x400a,r1 ; get pointer to the subprogram list\n"
"filelp\n\t"
"jeq filedon ; no subprograms\n\t"
"mov *r1+,r3 ; link to next item\n\t"
"mov *r1+,r2 ; address of this one\n\t"
"mov *r1+,r0 ; we are looking for length 1, name >16\n\t"
"ci r0,0x0116\n\t"
"jeq filegt\n\t"
"mov r3,r1 ; nope, get next\n\t"
"jmp filelp\n"
"filegt\n\t"
"lwpi 0x8300\n\t"
"clr %0 ; mark success in gcc workspace\n\t"
"lwpi 0x83e0\n\t ; we aren't done yet\n\t"
"bl *r2 ; go ahead and call it\n\t"
"nop ; skipped on success (we ignore failure, then)\n"
"filedon\n\t"
"sbz 0 ; turn off the rom (we assume r12 was not altered, it shouldn't be!)\n\t"
"lwpi 0x8300 ; our own ws back\n\t"
: "=r" (ret)
);
return ret;
}
#endif
void files(unsigned char count) {
DSR_FILES_COUNT = count;
#ifdef TI99
unsigned int dsrbase = 0x1000;
while (searchdofiles(dsrbase)) {
dsrbase+=0x100;
if (dsrbase >= 0x2000) break;
}
#endif
// no coleco or GBA equivalent
}