Subversion Repositories Kolibri OS

Rev

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

Rev 5171 Rev 5175
Line 1... Line 1...
1
include 'opengl_const.inc'
1
include 'opengl_const.inc'
2
include 'zbuffer.inc'
2
include 'zbuffer.inc'
3
include 'zmath.inc'
3
include 'zmath.inc'
Line 4... Line -...
4
 
-
 
5
;#define fputc(...) /*nothing*/
-
 
6
;#define fprintf(...) /*nothing*/
-
 
7
;#define vfprintf(...) /*nothing*/
-
 
8
;#undef stderr
-
 
9
;#define stderr ((FILE*)-1)
-
 
Line 10... Line 4...
10
 
4
 
11
 
5
 
12
;enum { OP_ ## a , ... }
6
;enum { OP_ ## a , ... }
13
s1 equ 0
7
sum1 equ 0
14
macro ADD_OP a,b,c
8
macro ADD_OP a,b,c
15
{
9
{
16
	OP_#a equ s1
10
	OP_#a equ sum1
17
	s1 equ (s1+1)
11
	sum1 equ (sum1+1)
Line 18... Line 12...
18
}
12
}