File: new_test_loadstore.h

package info (click to toggle)
gxemul 0.7.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 12,152 kB
  • sloc: ansic: 111,065; sh: 972; exp: 354; makefile: 118
file content (22 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

#define AAA

struct cpu {
	int pc;
#ifdef AAA
	unsigned char *table0[1048576];		/*  [1048576];  */
#else
	unsigned char **table0[1024];
#endif
};

struct ic {
	int dummy;
	int *arg1;
	int arg2;
	int *arg3;
};

void x(struct cpu *cpu, struct ic *ic);
void y(struct cpu *cpu, struct ic *ic);