Subversion Repositories Kolibri OS

Rev

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

Rev 7286 Rev 7746
Line 40... Line 40...
40
{
40
{
41
	debug( EDX);
41
	debug( EDX);
42
	debugch(10);
42
	debugch(10);
43
}
43
}
Line 44... Line -...
44
 
-
 
45
inline void debugi(dword d_int)
-
 
46
{
-
 
47
	char tmpch[12];
-
 
48
	itoa_(#tmpch, d_int);
-
 
49
	debugln(#tmpch);
-
 
50
}
-
 
51
 
44
 
52
:void debugval(dword text,number)
45
:void debugval(dword text,number)
-
 
46
{
53
{
47
	char tmpch[12];
54
	debug(text);
48
	debug(text);
-
 
49
	debug(": ");
55
	debug(": ");
50
	itoa_(#tmpch, number);
56
	debugi(number);
51
	debugln(#tmpch);
Line 57... Line 52...
57
}
52
}
58
 
53