diff --git a/Makefile b/Makefile index f64adc69..27c639ca 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ CC_FLAGS=\ CORE_FILES=const.js config.js io.js main.js lib.js fpu.js ide.js pci.js floppy.js memory.js \ dma.js pit.js vga.js ps2.js pic.js rtc.js uart.js hpet.js acpi.js apic.js ioapic.js \ state.js ne2k.js virtio.js bus.js log.js \ - cpu.js translate.js debug.js \ + cpu.js debug.js \ elf.js codegen.js LIB_FILES=9p.js filesystem.js jor1k.js marshall.js utf8.js BROWSER_FILES=screen.js \ diff --git a/loader.js b/loader.js index 9f792dd6..4bf1bf6c 100644 --- a/loader.js +++ b/loader.js @@ -5,7 +5,7 @@ "use strict"; var CORE_FILES = - "const.js config.js log.js cpu.js debug.js translate.js codegen.js " + + "const.js config.js log.js cpu.js debug.js codegen.js " + "io.js main.js lib.js ide.js fpu.js pci.js floppy.js " + "memory.js dma.js pit.js vga.js ps2.js pic.js rtc.js uart.js acpi.js apic.js ioapic.js hpet.js " + "ne2k.js state.js virtio.js bus.js elf.js"; diff --git a/src/translate.js b/src/translate.js deleted file mode 100644 index fb24da69..00000000 --- a/src/translate.js +++ /dev/null @@ -1,11 +0,0 @@ -"use strict"; - -/** @constructor */ -function DynamicTranslator(something) -{ - // TODO - dbg_assert(false); - - this.clear_cache = function() {}; - this.cycle_translated = function() {}; -}