Files
rosetta/toolchain/mxdbg/client/memory.c
T

20 lines
293 B
C
Raw Normal View History

#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,
};