summaryrefslogtreecommitdiff
path: root/src/usf/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/usf/main.c')
-rw-r--r--src/usf/main.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/usf/main.c b/src/usf/main.c
deleted file mode 100644
index e065a45..0000000
--- a/src/usf/main.c
+++ /dev/null
@@ -1,41 +0,0 @@
-
-#include <stdint.h>
-#include <stdarg.h>
-#include <stdio.h>
-#include <string.h>
-#include <unistd.h>
-#include "usf.h"
-#include "cpu.h"
-#include "memory.h"
-
-
-int InitalizeApplication ( void )
-{
-
- return 1;
-}
-
-void StopEmulation(void)
-{
- //asm("int $3");
- //printf("Arrivederci!\n\n");
- //Release_Memory();
- //exit(0);
- cpu_running = 0;
-}
-
-void DisplayError (char * Message, ...) {
- char Msg[1000];
- va_list ap;
-
- va_start( ap, Message );
- vsprintf( Msg, Message, ap );
- va_end( ap );
-
- printf("Error: %s\n", Msg);
-}
-
-void UsfSleep(int32_t time)
-{
- usleep(time * 1000);
-}