summaryrefslogtreecommitdiff
path: root/util/extensions/legacybios/arch/x86/builtin.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/extensions/legacybios/arch/x86/builtin.c')
-rw-r--r--util/extensions/legacybios/arch/x86/builtin.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/util/extensions/legacybios/arch/x86/builtin.c b/util/extensions/legacybios/arch/x86/builtin.c
deleted file mode 100644
index 10368ab630..0000000000
--- a/util/extensions/legacybios/arch/x86/builtin.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (C) 2003 Stefan Reinauer
- *
- * See the file "COPYING" for further information about
- * the copyright and warranty status of this work.
- */
-
-#include "config.h"
-#include "types.h"
-
-
-/*
- * wrap an array around the hex'ed dictionary file
- */
-
-static char romimage[] = {
-#include "rom.h"
-};
-
-void legacybios(ucell romstart, ucell romend);
-
-void cmain(void)
-{
- legacybios((ucell) romimage,
- (ucell) romimage + sizeof(romimage));
- return;
-}