mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 03:33:02 +02:00
17 lines
275 B
C
17 lines
275 B
C
typedef struct
|
|
{
|
|
char name[24];
|
|
int id;
|
|
struct
|
|
{
|
|
char name[8];
|
|
CPU *cpus;
|
|
} cpu[3];
|
|
int fixed_gfxcard;
|
|
void (*init)();
|
|
} MODEL;
|
|
|
|
extern MODEL models[];
|
|
|
|
extern int model;
|