kolibrios-fun/programs/games/nsider/kolibrisys/window_redraw.asm
eugene455 efd8f1922c The first stable version of N-sider. Level editor, 2 redraw technologies and save/load data added.
git-svn-id: svn://kolibrios.org@5266 a494cfbc-eb01-0410-851d-a64ba20cac60
2014-12-26 20:27:51 +00:00

11 lines
214 B
NASM

format COFF
include "public_stdcall.inc"
section '.text' code
public_stdcall __ksys_window_redraw,4
;arg1 - status
mov edx,ebx
mov eax,12
mov ebx,[esp+4]
int 0x40
mov ebx,edx
ret 4