Remove more unused JS

This commit is contained in:
Fabian 2018-01-23 16:16:26 -06:00
parent 9aea3c391f
commit d771b7bc7f
3 changed files with 2 additions and 13 deletions

View file

@ -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 \

View file

@ -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";

View file

@ -1,11 +0,0 @@
"use strict";
/** @constructor */
function DynamicTranslator(something)
{
// TODO
dbg_assert(false);
this.clear_cache = function() {};
this.cycle_translated = function() {};
}