20 lines
293 B
C
20 lines
293 B
C
|
|
#include "command.h"
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
static int memory(
|
||
|
|
const struct command *cmd,
|
||
|
|
struct debug_context *ctx,
|
||
|
|
int argc,
|
||
|
|
const char **argv,
|
||
|
|
void *argp)
|
||
|
|
{
|
||
|
|
printf("inspect memory\n");
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
const struct command cmd_memory = {
|
||
|
|
.cmd_name = "memory",
|
||
|
|
.cmd_callback = memory,
|
||
|
|
};
|