Skip to content

Commit

Permalink
Remove '-geos' command line option
Browse files Browse the repository at this point in the history
No longer needed since GEOS was removed from the X16 ROM
  • Loading branch information
dressupgeekout committed Jul 18, 2023
1 parent d1b010d commit ae7c382
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ define add_extra_files_to_package
cp ../x16-rom/build/x16/kernal.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/keymap.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/dos.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/geos.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/basic.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/monitor.sym $(TMPDIR_NAME)
cp ../x16-rom/build/x16/charset.sym $(TMPDIR_NAME)
Expand Down
10 changes: 0 additions & 10 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,6 @@ usage()
printf("\tkeyboard.\n");
printf("-run\n");
printf("\tStart the -prg/-bas program using RUN\n");
printf("-geos\n");
printf("\tLaunch GEOS at startup.\n");
printf("-warp\n");
printf("\tEnable warp mode, run emulator as fast as possible.\n");
printf("-echo [{iso|raw}]\n");
Expand Down Expand Up @@ -573,7 +571,6 @@ main(int argc, char **argv)
char *prg_path = NULL;
char *bas_path = NULL;
char *sdcard_path = NULL;
bool run_geos = false;
bool run_test = false;
int test_number = 0;
int audio_buffers = 8;
Expand Down Expand Up @@ -658,10 +655,6 @@ main(int argc, char **argv)
bas_path = argv[0];
argc--;
argv++;
} else if (!strcmp(argv[0], "-geos")) {
argc--;
argv++;
run_geos = true;
} else if (!strcmp(argv[0], "-test")) {
argc--;
argv++;
Expand Down Expand Up @@ -1076,9 +1069,6 @@ main(int argc, char **argv)
SDL_RWclose(bas_file);
}

if (run_geos) {
paste_text = "GEOS\r";
}
if (run_test) {
paste_text = paste_text_data;
snprintf(paste_text, sizeof(paste_text_data), "TEST %d\r", test_number);
Expand Down

0 comments on commit ae7c382

Please sign in to comment.