📄 linedisc.map
字号:
/* * Copyright (C) 1998, 1999, Jonathan S. Shapiro. * * This file is part of the EROS Operating System runtime library. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This library 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, 59 Temple Place - Suite 330 Boston, MA 02111-1307, USA. *//* * ttyin */ttyin = new domain;ttyin.seg = program segment "/eros/domain/ttyin";ttyin.pc = symbol "/eros/domain/ttyin" _start;ttyin.seg = ttyin.seg with page at 0x20000; /* for stack */ttyin.seg = ttyin.seg with page at 0x1F000; /* for stack */ttyin.seg = ttyin.seg with page at 0x30000; /* make room for shared page */ttyin pc = ttyin.pc; /* ttyin.dom sp = 0x21000 */ttyin space = ttyin.seg;ttyin priority = sched(8); /* normal */ttyin key reg 8 = misc ConsKbd;ttyin key reg 9 = misc ConsoleCreator; /* debug */ttyin key reg 10 = misc Sleep;ttyin key reg 11 = misc KeyBits; /* debug *//* * linedisc */linedisc = new domain;linedisc.seg = program segment "/eros/domain/linedisc";linedisc.pc = symbol "/eros/domain/linedisc" _start;linedisc.seg = linedisc.seg with page at 0x20000; /* for stack */linedisc.seg = linedisc.seg with page at 0x30000; /* for shared page */linedisc pc = linedisc.pc;/* linedisc sp = 0x21000 */linedisc space = linedisc.seg;linedisc priority = sched(8);linedisc key reg 9 = misc ConsoleCreator;linedisc key reg 10 = misc Sleep;linedisc key reg 11 = misc KeyBits; /* debug */linedisc key reg 6 = start primebank 0;linedisc key reg 5 = start ttyin 0;ttyin key reg 7 = start linedisc 0;ttyin key reg 5 = ttyin.seg;ttyin key reg 6 = linedisc.seg;run ttyin;run linedisc;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -