📄 _remsbit.asm
字号:
include ..\cwlib.inc
scode
;------------------------------------------------------------------------------
;
;Copy and re-map "system" bitmap duplicate.
;
;Calling:
;
;RemapSystemBitmap(tableptr);
;
;On Entry:
;
;tableptr - pointer to "system" bitmap table entry.
;
;On Exit:
;
;nothing.
;
;ALL registers preserved.
;
_RemapSystemBitmap proc syscall tableptr:dword
public _RemapSystemBitmap
push esi
mov esi,tableptr
call RemapSystemBitmap
pop esi
ret
_RemapSystemBitmap endp
efile
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -