16 lines
449 B
C
16 lines
449 B
C
/*******************************************************************************/
|
|
/* COS2000 - Compatible Operating System - LGPL v3 - Hordé Nicolas */
|
|
/* */
|
|
|
|
#include "libsys.h";
|
|
#include "libvideo.h";
|
|
#include "types.h";
|
|
|
|
void main(void)
|
|
{
|
|
u32 result = testapi(0x1234,0x88888888,0x2505);
|
|
print("ceci est un test d'appel");
|
|
waitkey();
|
|
exit(result);
|
|
}
|