XOSL 多操作系统管理工具 源代码 多系统引导工具

源代码在线查看: digits.asm

软件大小: 1179 K
上传用户: tswccyt
关键词: XOSL 操作系统 管理工具 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				                .model  compact
				                .386p
				                .data
				Digits          db      '0123456789abcdef'
				                .code
				                public  _GetDigit
				_GetDigit       proc    c
				                arg     @@Digit: word
				
				                mov     bx,offset Digits
				                add     bx,@@Digit
				                mov     al,[bx]
				
				                ret
				                endp
				
				                end
							

相关资源