reset.c
来自「linux嵌入式课程实践中的一个关于声卡驱动程序 。」· C语言 代码 · 共 30 行
C
30 行
/* * $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();}void dec_intr_halt(int irq, void *dev_id, struct pt_regs *regs){ dec_machine_halt();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?