test.imgmap.i486

来自「C++ 编写的EROS RTOS」· I486 代码 · 共 77 行

I486
77
字号
/* -*- C -*- *//* * Copyright (C) 1998, 1999, 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 faulterer and# a faulteree.  The faulteree in this case is the trivkpr domain.  The# faulterer simply invokes the trivkpr domain and then does an # illegal instruction, allowing output to be examined through the # kernel debugger.## Set up the faulterer domain:#*/arch i486#include <primebank.map>#include <pcc.map>#include <metacon.map>#include <vcs.map>trivkpr = new domain;trivkpr.seg = program segment "trivkpr";trivkpr.pc = symbol "trivkpr" _start;trivkpr.seg = trivkpr.seg with page at 0x20000;	trivkpr sp = 0x21000;trivkpr pc = trivkpr.pc;trivkpr space = trivkpr.seg;trivkpr priority = sched(8); faulter = new domain;faulter.seg = program segment "faulter";faulter.pc = symbol "faulter" _start;faulter.seg = faulter.seg with page at 0x20000;  faulter sp = 0x21000;faulter pc = faulter.pc;faulter space = faulter.seg;faulter priority = sched(8);   faulter domain keeper = start trivkpr 0;trivkpr key reg 1 = misc Console;trivkpr key reg 2 = misc Returner;faulter key reg 1 = misc Console;faulter key reg 2 = misc Sleep;ipl faulter;print faulter;print trivkpr;run faulter;run trivkpr;

⌨️ 快捷键说明

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