diff options
author | Oxore <oxore@protonmail.com> | 2022-09-29 01:48:14 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-09-29 01:48:14 +0300 |
commit | d657bc185cc1ea7fff8918d96de6860204543c50 (patch) | |
tree | a908b766fbb6083dbf9e3da646e530fc98d8e49c /emulator.cpp | |
parent | 66aaa9dc37d0c2d00bcd46e9c97b867c4a807303 (diff) |
Remove no more needed dead code
Diffstat (limited to 'emulator.cpp')
-rw-r--r-- | emulator.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/emulator.cpp b/emulator.cpp index 67566b9..59c1367 100644 --- a/emulator.cpp +++ b/emulator.cpp @@ -473,16 +473,6 @@ int main(int argc, char* argv[]) m68k_execute(1); // Skip reset cycles emulator(g_m68k_debug); - while (0) - { - // Values to execute determine the interleave rate. - // Smaller values allow for more accurate interleaving with multiple - // devices/CPUs but is more processor intensive. - // 100000 is usually a good value to start at, then work from there. - - // Note that I am not emulating the correct clock speed! - m68k_execute(100000); - } return 0; } |