summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/kernel/include
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/openbios/kernel/include
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/openbios/kernel/include')
-rw-r--r--qemu/roms/openbios/kernel/include/dict.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/qemu/roms/openbios/kernel/include/dict.h b/qemu/roms/openbios/kernel/include/dict.h
deleted file mode 100644
index 749fd6fba..000000000
--- a/qemu/roms/openbios/kernel/include/dict.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/* tag: dict management headers
- *
- * Copyright (C) 2003 Patrick Mauritz, Stefan Reinauer
- *
- * See the file "COPYING" for further information about
- * the copyright and warranty status of this work.
- */
-
-#ifndef __DICT_H
-#define __DICT_H
-
-#define DICTID "OpenBIOS"
-
-#define DOSEMIS 0
-#define DOCOL 1
-#define DOLIT 2
-#define DOCON 3
-#define DOVAR 4
-#define DODFR 5
-#define DODOES 6
-
-#define MAXNFALEN 128
-
-/* The header is 28/32 bytes on 32/64bit platforms */
-
-typedef struct dictionary_header {
- char signature[8];
- u8 version;
- u8 cellsize;
- u8 endianess;
- u8 compression;
- u8 relocation;
- u8 reserved[3];
- u32 checksum;
- u32 length;
- ucell last;
-} __attribute__((packed)) dictionary_header_t;
-
-ucell lfa2nfa(ucell ilfa);
-ucell load_dictionary(const char *data, ucell len);
-void dump_header(dictionary_header_t *header);
-ucell fstrlen(ucell fstr);
-void fstrncpy(char *dest, ucell src, unsigned int maxlen);
-ucell findsemis(ucell xt);
-ucell findxtfromcell_wordlist(ucell incell, ucell wordlist);
-ucell findxtfromcell(ucell incell);
-
-/* program counter */
-extern ucell PC;
-
-extern unsigned char *dict;
-extern cell dicthead;
-extern cell dictlimit;
-extern ucell *last;
-#ifdef FCOMPILER
-extern ucell *trampoline;
-#endif
-
-#endif