⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frob.c

📁 Hermit-at-1.1.3,一款bootloader
💻 C
字号:
/* * Copyright (c) 2000 Blue Mug, Inc.  All Rights Reserved. */#include <ep7211/ioregs.h>#include "frob.h"static const command_t *frob_commands[] = {	&help_command,	&peek_command,	&peek8_command,	&peek16_command,	&peeknext_command,	&poke_command,	&poke8_command,	&poke16_command,	&quit_command,	0};ABBR(help_command, '?')ABBR(peek_command, 'p')ABBR(peek8_command, '8')ABBR(peeknext_command, 'n')ABBR(poke_command, 'k')ABBR(quit_command, 'q')static const abbrev_t *frob_abbrevs[] = {	&help_command_abbrev,	&peek_command_abbrev,	&peek8_command_abbrev,	&peeknext_command_abbrev,	&poke_command_abbrev,	&quit_command_abbrev,	0};static command_list_t frob_command_list =	{ frob_commands, frob_abbrevs, "frob", 0 };static int frob_cmdfunc(int argc, char *argv[]){	do_command_loop(&frob_command_list);	return 0;}const command_t frob_command =	{ "frob", 0, "commands for frobbing memory", &frob_cmdfunc };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -