AcessNative - Cleaned up some of acesskernel's code
[tpg/acess2.git] / AcessNative / acesskernel_src / main.c
index 1dcf61a..09e09dc 100644 (file)
@@ -4,85 +4,12 @@
  *
  * Kernel Main
  */
-#include <acess.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <sys/time.h>
+#include <SDL/SDL.h>
 
 int main(int argc, char *argv[])
 {
        return 0;
 }
 
-void LogF(const char *Fmt, ...)
-{
-       va_list args;
-       va_start(args, Fmt);
-       vprintf(Fmt, args);
-       va_end(args);
-}
-
-void Log(const char *Fmt, ...)
-{
-       va_list args;
-       printf("Log: ");
-       va_start(args, Fmt);
-       vprintf(Fmt, args);
-       va_end(args);
-       printf("\n");
-}
-
-void Warning(const char *Fmt, ...)
-{
-       va_list args;
-       printf("Warning: ");
-       va_start(args, Fmt);
-       vprintf(Fmt, args);
-       va_end(args);
-       printf("\n");
-}
-
-void Panic(const char *Format, ...)
-{
-       va_list args;
-       printf("Panic: ");
-       va_start(args, Format);
-       vprintf(Format, args);
-       va_end(args);
-       printf("\n");
-       exit(-1);
-}
-
-void Debug_SetKTerminal(const char *Path)
-{
-       // Ignored, kernel debug goes to stdout
-}
-
-void *Heap_Allocate(int Count, const char *File, int Line)
-{
-       return malloc(Count);
-}
-
-tPAddr MM_GetPhysAddr(tVAddr VAddr)
-{
-       return VAddr;   // HACK!
-}
-
-Uint MM_GetFlags(tVAddr VAddr)
-{
-       return 0;
-}
-
-int Modules_InitialiseBuiltin(const char *Name)
-{
-       return 0;       // Ignored
-}
-
-Sint64 now(void)
-{
-       struct timeval tv;
-       struct timezone tz;
-       gettimeofday(&tv, &tz);
-       return tv.tv_sec * 1000 + tv.tv_usec/1000;
-}
-

UCC git Repository :: git.ucc.asn.au