reset.c

来自「Linux内核源代码 为压缩文件 是<<Linux内核>&gt」· C语言 代码 · 共 26 行

C
26
字号
/* *  $Id: $ * *  Reset a DECstation machine. * */void (*back_to_prom)(void) = (void (*)(void))0xBFC00000;void dec_machine_restart(char *command){	back_to_prom();}void dec_machine_halt(void){	back_to_prom();}void dec_machine_power_off(void){    /* DECstations don't have a software power switch */	back_to_prom();}

⌨️ 快捷键说明

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