Skip to content

Commit

Permalink
Dispatch to (currently non-existent) vice code
Browse files Browse the repository at this point in the history
  • Loading branch information
Sgeo committed Aug 21, 2018
1 parent fd1ec3e commit 9eee49d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
5 changes: 5 additions & 0 deletions loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ var Module = null;
cfgr = PCELoader;
get_files = get_pce_files;
}
else if (module && module.indexOf("vice-") === 0) {
emulator_logo = images.ia; // TODO: Use VICE or C64 logo
cfgr = VICELoader;
get_files = get_vice_files;
}
else if (module) {
emulator_logo = images.mame;
cfgr = MAMELoader;
Expand Down
3 changes: 3 additions & 0 deletions vice_todo.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* Add logo
* Define get_vice_files
* Define VICELoader

0 comments on commit 9eee49d

Please sign in to comment.