diff --git a/README.md b/README.md
index 23837a9..cfa23bf 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,6 @@
-ScriptedAmigaEmulator
-=====================
-
-Amiga Emulator in javascript and HTML5
\ No newline at end of file
+Scripted Amiga Emulator
+=======================
+
+Amiga Emulator in javascript and HTML5.
+
+Visit http://scriptedamigaemulator.net
\ No newline at end of file
diff --git a/index.htm b/index.htm
index 2b3a7be..354655c 100644
--- a/index.htm
+++ b/index.htm
@@ -56,7 +56,8 @@
This site is a demonstration of the 'SAE' project,
an experimental Amiga emulator in pure javascript and HTML5.
For details, please refer to the readme file.
- Below you find a small collection of games and demos to play...
+ Below you find a small collection of games and demos to play...
+ (Use Google Chrome for best results)
@@ -563,7 +564,7 @@
diff --git a/index.js b/index.js
index 9a9b336..b57106c 100644
--- a/index.js
+++ b/index.js
@@ -116,13 +116,13 @@ const db = [
[true, 16, 17, false],
['Change the disks manualy when asked.'], []
],
- ['Terminator 2 - Judgment Day', 'Ocean', '1991',
+ /*['Terminator 2 - Judgment Day', 'Ocean', '1991',
['Terminator 2 - Judgment Day (Disk 1).adf',
'Terminator 2 - Judgment Day (Disk 2).adf',
false, false], true,
[true, 16, 17, false],
['Press the LMB to skip the intro
and insert the 2nd disk manualy.'], []
- ],
+ ],*/
['Turrican II - The Final Fight', 'Rainbow Arts', '1991',
['Turrican II - The Final Fight (Disk 1).adf',
'Turrican II - The Final Fight (Disk 2).adf',
@@ -601,6 +601,7 @@ function getSimpleConfig() {
var e, num;
config.cpu.speed = SAEV_Config_CPU_Speed_Original;
+ //config.cpu.speed = SAEV_Config_Floppy_Speed_Turbo;
//config.chipset.type = SAEV_Config_Chipset_Type_OCS;
config.chipset.colLevel = SAEV_Config_Chipset_ColLevel_None;
@@ -1033,7 +1034,7 @@ function advandedStart2() {
start();
else {
disabled('cfg_start', 0);
- document.getElementById('cfg_start').innerHTML = 'Play';
+ document.getElementById('cfg_start').innerHTML = 'Start';
}
}
function advandedStart() {
@@ -1057,7 +1058,7 @@ function stop() {
disabled('cfg_simple_start', 0);
disabled('cfg_start', 0);
document.getElementById('cfg_simple_start').innerHTML = 'Play';
- document.getElementById('cfg_start').innerHTML = 'Play';
+ document.getElementById('cfg_start').innerHTML = 'Start';
if (mode == 1)
setConfig();
diff --git a/readme.htm b/readme.htm
index 79286dd..f83aec8 100644
--- a/readme.htm
+++ b/readme.htm
@@ -93,9 +93,15 @@
- Known bugs/problems
- - Fast blinking sprites are not displayed if 'Frameskip' is active.
- - Copper initiated color-changes within a scanline are not recognized.
- - Left/right shift/alt/ctrl are the same. That's a browser 'feature' and can't be fixed for now.
+ - There may be graphics-errors:
+
+ - Graphics may be at a wrong position or a wrong color.
+ - Fast blinking sprites are not displayed if 'Frameskip' is active.
+ - Copper initiated color-changes within a scanline are not recognized.
+ - The next update (0.8) will deal with this.
+
+
+ - Left/right shift/alt/ctrl are the same. That's a browser 'feature' and can't be fixed.
diff --git a/sae/disk.js b/sae/disk.js
index 3ec4c3b..6c9a2ef 100644
--- a/sae/disk.js
+++ b/sae/disk.js
@@ -1104,7 +1104,7 @@ function Disk() {
}
this.update_read_nothing = function(floppybits) {
- //BUG.info('Disk.update_read_nothing() floppybits %d', floppybits);
+ BUG.info('Disk.update_read_nothing() floppybits %d', floppybits);
while (floppybits >= get_floppy_speed()) {
word <<= 1;
@@ -1241,7 +1241,7 @@ function Disk() {
//BUG.info('Disk.doupdate_predict() startcycle %d', startcycle);
var finaleventcycle = AMIGA.events.maxhpos << 8;
var finaleventflag = 0;
-
+
for (var dr = 0; dr < MAX_FLOPPY_DRIVES; dr++) {
if (selected & (1 << dr))
continue;
diff --git a/sae/events.js b/sae/events.js
index 7506d0d..b989c28 100644
--- a/sae/events.js
+++ b/sae/events.js
@@ -93,7 +93,7 @@ function Events() {
for (var i = 0; i < EV2_MAX; i++)
this.eventtab2[i] = new Event2();
- //this.eventtab[EV2_BLITTER].handler = function() { AMIGA.blitter.handler(); }
+ //this.eventtab[EV2_BLITTER].handler = function(data) { AMIGA.blitter.handler(data); }
//this.eventtab[EV2_DISK].handler = function(data) { AMIGA.disk.handler(data); }
BUG.info('Events.setup() set %d event2 handlers', EV2_MAX);