diff --git a/index.html b/index.html
index 7b43ee2..20c9333 100644
--- a/index.html
+++ b/index.html
@@ -39,6 +39,13 @@
'./roms/7-beep.ch8',
'./roms/8-scrolling.ch8',
'./roms/Maze[David Winter, 199x].ch8',
+ './roms/Airplane.ch8',
+ './roms/Cave.ch8',
+ './roms/Life [GV Samways, 1980].ch8',
+ './roms/Pong (1 player).ch8',
+ './roms/SQRT Test [Sergey Naydenov, 2010].ch8',
+ './roms/Timebomb.ch8',
+ './roms/Worm V4 [RB-Revival Studios, 2007].ch8'
];
// Set user keys
@@ -75,7 +82,7 @@
emulator.startAudio(audioContext, volume);
// Load ROM
- fetch(fullDirRoms[6])
+ fetch(fullDirRoms[3])
.then(response => response.arrayBuffer())
.then(arrayBufferRom => {
let romData = new Uint8Array(arrayBufferRom);
@@ -90,7 +97,7 @@
emulator.emulateCycle();
emulator.drawToCanvas(emulatorCanvas, 8);
}
- }, 60);
+ }, 10);