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

📄 imgmap

📁 C++ 编写的EROS RTOS
💻
字号:
/* -*- C -*- *//*# Copyright (C) 1998, 1999, 2001, Jonathan S. Shapiro.## This file is part of the EROS Operating System.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License# as published by the Free Software Foundation; either version 2,# or (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *//*# faulter domain test case.  This test case has two domains: a faulter and# a faultee.  The faultee in this case is the trivkpr domain.  The# faulter simply does an illegal# instruction, allowing output to be examined through the kernel debugger. */faulter = new process;faulter.seg = program segment "faulter";faulter.pc = symbol "faulter" _start;faulter.seg = faulter.seg with page at 0xf000;faulter pc= faulter.pc;faulter space = faulter.seg;faulter schedule = sched(8); /* normal */trivkpr = new process;trivkpr.seg = program segment "trivkpr";trivkpr.pc = symbol "trivkpr" _start;trivkpr.seg = trivkpr.seg with page at 0xf000;trivkpr pc= trivkpr.pc;trivkpr space = trivkpr.seg;trivkpr schedule = sched(8); /* normal */trivkpr key reg 1 = misc Console;faulter key reg 1 = misc Console;faulter key reg 2 = misc Sleep;faulter domain keeper = start trivkpr 0;run faulter;run trivkpr;

⌨️ 快捷键说明

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