]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
This is a BIOS emulator, porting from SciTech for u-boot, mainly for
authorJason Jin <Jason.jin@freescale.com>
Fri, 6 Jul 2007 00:34:56 +0000 (08:34 +0800)
committerWolfgang Denk <wd@denx.de>
Sun, 5 Aug 2007 23:28:15 +0000 (01:28 +0200)
commitece92f85053b8df613edcf05b26a416cbc3d629c
tree2d3389882d0655781183c2fd655dc6746c5eeea1
parent5072188acabde3178fac7f5a597150e6e74fd40c
This is a BIOS emulator, porting from SciTech for u-boot, mainly for
ATI video card BIOS. and can be used for x86 code emulation by some
modifications.

Signed-off-by: Jason Jin <Jason.jin@freescale.com>
21 files changed:
drivers/bios_emulator/Makefile [new file with mode: 0644]
drivers/bios_emulator/atibios.c [new file with mode: 0644]
drivers/bios_emulator/besys.c [new file with mode: 0644]
drivers/bios_emulator/bios.c [new file with mode: 0644]
drivers/bios_emulator/biosemu.c [new file with mode: 0644]
drivers/bios_emulator/biosemui.h [new file with mode: 0644]
drivers/bios_emulator/include/biosemu.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/debug.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/decode.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/ops.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/prim_asm.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/prim_ops.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/regs.h [new file with mode: 0644]
drivers/bios_emulator/include/x86emu/x86emui.h [new file with mode: 0644]
drivers/bios_emulator/x86emu/debug.c [new file with mode: 0644]
drivers/bios_emulator/x86emu/decode.c [new file with mode: 0644]
drivers/bios_emulator/x86emu/ops.c [new file with mode: 0644]
drivers/bios_emulator/x86emu/ops2.c [new file with mode: 0644]
drivers/bios_emulator/x86emu/prim_ops.c [new file with mode: 0644]
drivers/bios_emulator/x86emu/sys.c [new file with mode: 0644]