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

📄 reset.c

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 C
字号:
/* *  $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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -