mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
8 lines
142 B
C
8 lines
142 B
C
|
typedef struct _sim_cpu {
|
||
|
unsigned_word reg[32];
|
||
|
sim_cpu_base base;
|
||
|
instruction_address cia;
|
||
|
} sim_cpu;
|
||
|
|
||
|
#define GPR(N) ((CPU)->reg[N])
|