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

📄 hello.asm

📁 一个从底层支持中文显示的操作系统的源代码,以及目标IMG文件,可在VMWare下运行.
💻 ASM
字号:
;=======================================
;	WarmOS Demo Application
;	by HotHeart(xujiwei)
;	Email: vipxjw@163.com
;
;	File format: COM
;	File description: Display some
;	messages and show the param and
;	the length of it
;=======================================
org		0x100
main:
		mov		ax,0
		mov		bx,szHello
		int		0x40
		mov		ax,0
		mov		bx,0x81
		int		0x40
		mov		ax,0
		mov		bx,szParamLen
		int		0x40
		mov		ax,4
		movzx	bx,byte [0x80]
		int		0x40
		mov		ax,-1
		int		0x40
szHello:
	db	'你好,世界!',13,10
	db	'这是一个示例程序,为COM文件格式。',13,10
	db	'参数字符为:',0
szParamLen:
	db	13,10,'参数长度为:',0

⌨️ 快捷键说明

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