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

📄 remsbit.asm

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 ASM
字号:
	include ..\cwlib.inc
	scode

;------------------------------------------------------------------------------
;
;Copy and re-map "system" bitmap duplicate.
;
;On Entry:
;
;EDI	- pointer to "system" bitmap table entry.
;
;On Exit:
;
;nothing.
;
;ALL registers preserved.
;
RemapSystemBitmap proc near
	pushm	eax,ebx,ecx,esi,edi
	mov	esi,BMT_Pointer[edi]
	mov	eax,BM_Wide[esi]
	mul	BM_Depth[esi]
	mov	ecx,eax
	mov	edi,BMT_Duplicate[edi]
	xchg	esi,edi
	add	edi,size BM
	mov	ebx,offset SystemXLat
l0:	mov	al,[esi]
	inc	esi
	xlat
	mov	[edi],al
	inc	edi
	dec	ecx
	jnz	l0
	popm	eax,ebx,ecx,esi,edi
	ret
RemapSystemBitmap endp


	efile
	end

⌨️ 快捷键说明

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