Subversion Repositories Kolibri OS

Rev

Rev 7913 | Rev 7970 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7913 Rev 7914
Line 71... Line 71...
71
#include "../lib/mouse.h"
71
#include "../lib/mouse.h"
72
#include "../lib/keyboard.h"
72
#include "../lib/keyboard.h"
Line 73... Line 73...
73
 
73
 
Line 74... Line -...
74
inline fastcall dword calc(EAX) { return EAX; }
-
 
75
 
-
 
76
inline fastcall swap(EAX, EBX)
-
 
77
{
-
 
78
	$push ESDWORD[EAX]
-
 
79
	ESDWORD[EAX] = ESDWORD[EBX];
-
 
Line 80... Line 74...
80
	$pop ESDWORD[EBX];
74
inline fastcall dword calc(EAX) { return EAX; }
81
}
75
 
82
 
76