16 lines
235 B
C
16 lines
235 B
C
|
typedef struct command
|
||
|
{
|
||
|
u8 name[64];
|
||
|
u8 params[64];
|
||
|
int (*function)(void)
|
||
|
} command __attribute__ ((packed));
|
||
|
|
||
|
int rebootnow();
|
||
|
int test2d();
|
||
|
int readidt();
|
||
|
int readgdt();
|
||
|
int detectcpu();
|
||
|
int mode();
|
||
|
int clear();
|
||
|
int dump_regs();
|