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

📄 script.asm

📁 FDOS Operating System
💻 ASM
字号:

	MSG_Welcome	DB	'FDOS Scripting',13,10,
			DB	'Copyright Stefan Tappertzhofen 2002-2003',13,10,13,10,
			DB	'Syntax:  script [/option]',13,10,
			DB	'         script [/h] [command]',13,10,
			DB	'         script [code]',13,10,13,10,
			DB	'OPTION:',13,10,
			DB	' /h      shows this screen',13,10,
			DB	' /ver    shows a version overview',13,10,13,10,
			DB	'COMMAND:',13,10,
			DB	' list    list of all supported commands',13,10,
			DB	' Command displays a short overview about the wanted',13,10,
			DB	'         command',13,10,13,10,
			DB	'Replace CODE with the code you want to run.',13,10,0


	MSG_Version	DB	'FDOS Scripting',13,10,
			DB	'Version 0.1 b',13,10,
			DB	'Copyright Stefan Tappertzhofen 2002-2003',13,10,0

	MSG_List	DB	'FDOS Scripting',13,10,13,10,
			DB	'The following commands are supported:',13,10,13,10,
			DB	'  echo   [string]              Displays a certain string.',13,10,
			DB	'  getmem [Address]             Returns the value of a',13,10,
			DB	'                               certain memory segment.',13,10,
			DB	'  putmem [char] [Address]      Overwrites a certain memory',13,10,
			DB	'                               segment.',13,10,13,10,
			DB	'Example:  "script /h echo"',13,10,0


	MSG_CMD_Echo	DB	'FDOS Scripting',13,10,13,10,
			DB	'Command echo',13,10,13,10,
			DB	'Syntax:  echo [String]',13,10,13,10,
			DB	'Displays a zero-terminated string.',13,10,
			DB	13,10,
			DB	'Example:',13,10,13,10,
			DB	' echo Hello World',13,10,0


	MSG_CMD_Getmem	DB	'FDOS Scripting',13,10,13,10,
			DB	'Command getmem',13,10,13,10,
			DB	'Syntax:  getmem [Address]',13,10,13,10,
			DB	'Displays the content of a certain memory segment.',13,10,
			DB	13,10,
			DB	'Example:',13,10,13,10,
			DB	' getmem 40000',13,10,0



	MSG_CMD_Putmem	DB	'FDOS Scripting',13,10,13,10,
			DB	'Command puttmem',13,10,13,10,
			DB	'Syntax:  putmem [char] [Address]',13,10,13,10,
			DB	'Overwrites a certain memory segment with a character.',13,10,
			DB	13,10,
			DB	'Example:',13,10,13,10,
			DB	' putmem x 40000',13,10,0

⌨️ 快捷键说明

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