en_help.asm
来自「FDOS Operating System」· 汇编 代码 · 共 108 行
ASM
108 行
MSG_Top db 'FDOS 0.0.5 Help',13,10,'==========',13,10,13,10,0
MSG_Scr1 db ' 1.) Overview',13,10,' 2.) Changes, Whats new?',13,10,' 3.) Standart commands',13,10,' 4.) Copyright Information',13,10,' 5.) Exit application',13,10,13,10,' Your option: ',0
MSG_Scr2 db ' Overview: Welcome to FDOS 0.0.5!',13,10,13,10,' FDOS (Floppy Disk Operating System) is a Assembler (NASM) programmed',13,10,' educationell operating system. Its aim is to show how operating systems',13,10,' work and how to handle hardwarebased programming.',13,10,13,10,' The first version was developed in March 2002 as an essay about the "How',13,10,' operating Systems work showed by a tiny self-developed Operating System".',13,10,13,10,' Many people asked me not to stop the developing of the system. In this',13,10,' version the File System FAT 12 is supported for the first time.',13,10,13,10,' Visit the FDOS Homepage to get more information:',13,10,' -> http://www.visual-opal.de',13,10,13,10,13,10,13,10,' Press a key to return.',0
mg db '------------------------------------------------------------------------------'
MSG_Scr3 db ' Whats new? - Version 0.0.5',13,10,13,10,
db ' - Directorys are supported',13,10,
db ' FDOS 0.0.5 supports directories and subdirectories To change the direct-',13,10,
db ' tory just execute "cd [dirname]". To return to the root directory exe-',13,10,
db ' cute "cd..".',13,10,
db ' - Changing of commands',13,10,
db ' As FDOS is now supporting directories it was nessesarry to change the',13,10,
db ' shape of some commands. Now "cd", "cd..", "cls", "dir", "exit" and "ver"',13,10,
db ' are integrated into the FDOS Kernel/Shell system.',13,10,
db ' - New API functions',13,10,
db ' Because of FDOS new Features it was important to develope new API func-',13,10,
db ' tions. It was also usefull to work on some existing functions.',13,10,13,10,
db ' Press a key to return..',0
MSG_Scr4 db ' Standart commands',13,10,13,10,
db ' Due to make the system as much as easy as possible the most system commands',13,10,
db ' are small binary files (ending with >>bin<<).',13,10,
db ' - cd [name] Change to a subdirectory',13,10,
db ' - cd.. Change to root directory',13,10,
db ' - cls Clear Screen',13,10,
db ' - date/time Display time and date',13,10,
db ' - dir List the files containg in the recent directory',13,10,
db ' - exit System exit',13,10,
db ' - help this screen',13,10,
db ' - keyb pseudo keyboard driver',13,10,
db ' - script pseudo script parser',13,10,
db ' - status PC information',13,10,
db ' - ver FDOS information',13,10,13,10,0
db ' Press a key to return.',0
MSG_Scr5 db ' Copyright',13,10,13,10,' FDOS 0.00.5 - Floppy Disk Operatig System',13,10,' (c) Stefan Tappertzhofen 2002-2003',13,10,' This program is free software; you can redistribute it and/or modify it',13,10,' under the terms of the GNU General Public License as published by the',13,10,' Free Software Foundation; either version 2 of the License, or (at your',13,10,' option) any later version.',13,10,' This program is distributed in the hope that it will be useful, but',13,10,' WITHOUT ANY WARRANTY; without even the implied warranty of',13,10,' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General',13,10,' Public License for more details.',13,10,' FDOS version 1.0, Copyright (C) 2002 Stefan Tappertzhofen FDOS comes with',13,10,' ABSOLUTELY NO WARRANTY. (more Infos: www.visual-opal.de)',13,10,13,10,13,10,13,10,' Press a key to return.',0
MSG_Press_A_Key db ' Druecken Sie eine Taste um zurueckzukehren.',0
MSG_THeader db 'FDOS 0.0.5 Help Guide',13,10,
db '(c) Stefan Tappertzhofen 2002-2003. Alle Rechte vorbehalten.',13,10,13,10,0
MSGTCMD_Help db 'Befehl: help',13,10,13,10,
db ' Syntax: help [/h] [command]',13,10,
db ' help [/copyright]; [/?]; [/ver]; [/help]',13,10,13,10,
db 'Help zeigt eine Hilfe ueber FDOS an. Sie koennen HELP auch ohne Parameter',13,10,
db 'benutzen. HELP ruft in diesem Falle ein Uebersichtsprogramm auf.',13,10,0
MSGTCMD_Status db 'Befehl: status',13,10,13,10,
db ' Syntax: status',13,10,13,10,
db 'Der Statusbefehl gibt aktuelle Informationen ueber das System wieder.',13,10,
db 'Es werden keine Parameter gefordert.',13,10,0
MSGTCMD_Cls db 'Befehl: cls',13,10,13,10,
db ' Syntax: cls',13,10,13,10,
db 'CLS loescht den Bildschirm und setzt den Textzeiger an den Anfang des',13,10,
db 'Bildschirms. Es werden keine Parameter gefordert.',13,10,0
MSGTCMD_Ver db 'Befehl: ver',13,10,13,10,
db ' Syntax: ver',13,10,13,10,
db 'Ver gibt die aktuelle Version FDOS samt des LNG Codes wieder.',13,10,
db 'Es werden keine Parameter gefordert.',13,10,0
MSGTCMD_Dir db 'Befehl: dir',13,10,13,10,
db ' Syntax: dir',13,10,13,10,
db 'DIR gibt den Inhalt des Hauptverzeichnisses wieder. Es werden keine Para-',13,10,
db 'meter gefordert.',13,10,0
MSGTCMD_Date db 'Befehl: date',13,10,13,10,
db ' Syntax: date [/set] [tag] [monat] [jahr] [stunde] [minute] [sekunde]',13,10,13,10,
db 'DATE oder TIME gibt die aktuelle Datums- und Zeitangaben aus. Mit [/set]',13,10,
db 'kann man das Datum und die Uhrzeit setzen.',13,10,0
MSGTCMD_Time db 'Befehl: time',13,10,13,10,
db ' Syntax: time [/set] [tag] [monat] [jahr] [stunde] [minute] [sekunde]',13,10,13,10,
db 'DATE oder TIME gibt die aktuelle Datums- und Zeitangaben aus. Mit [/set]',13,10,
db 'kann man das Datum und die Uhrzeit setzen.',13,10,0
MSGTCMD_Keyb db 'Befehl: keyb',13,10,13,10,
db ' Syntax: keyb [/de]; [/en]',13,10,13,10,
db 'Aendert das Tastaturlayout. Geben sie KEYB ohne Parameter ein um naehre',13,10,
db 'Informationen zu erhalten',13,10,0
MSGTCMD_Script db 'Befehl: script',13,10,13,10,
db ' Syntax: script [/code]',13,10,13,10,
db 'Interner Mini Script Interpreter. Geben sie SCRIPT ein um naehre',13,10,
db 'Informationen zu erhalten',13,10,0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?