_regupw.asm
来自「开放源码的编译器open watcom 1.6.0版的源代码」· 汇编 代码 · 共 42 行
ASM
42 行
include ..\cwlib.inc
scode
;-------------------------------------------------------------------------------
;
;Update a particular rectangle of the display.
;
;Calling:
;
;WindowRegionUpdate(xcoord,ycoord,wide,depth);
;
;On Entry:
;
;xcoord - X coord.
;ycoord - Y coord.
;wide - width.
;depth - depth.
;
;On Exit:
;
;nothing.
;
;ALL registers preserved.
;
_WindowRegionUpdate proc syscall xcoord:dword, ycoord:dword, wide:dword, depth:dword
public _WindowRegionUpdate
pushm ecx,edx,esi,edi
mov ecx,xcoord
mov edx,ycoord
mov esi,wide
mov edi,depth
call WindowRegionUpdate
popm ecx,edx,esi,edi
ret
_WindowRegionUpdate endp
efile
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?