-
Notifications
You must be signed in to change notification settings - Fork 1
/
opcode.c
79 lines (63 loc) · 1.34 KB
/
opcode.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
/*
opcode.c
search opcode and execute function
*/
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include "global_vars.h"
#include "opcode.h"
#include "my.h"
extern int sourceMode;
/* SearchOpcode
looks through opcode-list and jumps into opcode-function
returns either error-code or -1 for no opcode found
*/
int SearchOpcode(const struct opcode_s *list, const char *s)
{
const struct opcode_s *curr;
if ( strlen(s) > 7 ){
return -1;
}
curr = list;
while ( curr->name[0] ){
if ( !strcasecmp(curr->name,s) ){
// printf("Found (%s)\n",curr->name);
return curr->func( curr->misc );
}
curr++;
}
return -1;
}
int SearchOpcode2(const struct opcode_s *list,
const char *s,
int (**fun)(int ),
int *para)
{
const struct opcode_s *curr;
extern int mac_mode;
// ignore leading dot
if ( s[0] == '.' ){
++s;
}
if ( strlen(s) > 7 && !mac_mode ){
return -1;
}
if ( Global.mainMode != JAGUAR_GPU &&
Global.mainMode != JAGUAR_DSP &&
!strcasecmp(s,"DP") )
{
return -1;
}
curr = list;
while ( curr->name[0] ){
if ( !strcasecmp(curr->name,s) ){
// printf("Found (%s)\n",curr->name);
*fun = curr->func;
*para = curr->misc;
return 1;
}
curr++;
}
return -1;
}