2018-09-17 18:17:11 +02:00
|
|
|
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();
|
2018-09-27 21:01:02 +02:00
|
|
|
int info();
|