Skip to content
This repository has been archived by the owner on Nov 20, 2018. It is now read-only.

Commit

Permalink
68000 mode now requires kick2.05 (A600HD) kickstart - fixes issue #25
Browse files Browse the repository at this point in the history
  • Loading branch information
HoraceAndTheSpider committed Jan 2, 2018
1 parent 40669e4 commit 2a21ecd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions uae_config_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,11 @@ def do_scan(input_directory, pathname,output_directory):
fast_ram = 8
clock_speed = 14

# pre-check for alt-kickstart
if check_list("CPU_68000.txt", this_file) is True:
kickstart = "kick205.rom"

# check rom requirement

rom_check = True
if IGNORE_ROM_REQUIREMENT == False:
if os.path.isfile(ROM_PATH + kickstart) == False:
Expand All @@ -608,7 +611,6 @@ def do_scan(input_directory, pathname,output_directory):
print (" Extended Kickstart file: " + FontColours.FAIL + ROM_PATH + kickstart_ext + FontColours.ENDC + " is missing!")
rom_check = False




# '======== MEMORY SETTINGS =======
Expand Down Expand Up @@ -700,7 +702,7 @@ def do_scan(input_directory, pathname,output_directory):
# ' cpu model 68000
if check_list("CPU_68000.txt", this_file) is True:
a_cpu = "68000"

# ' cpu model 68040
if check_list("CPU_68040.txt", this_file) is True:
a_cpu = "68040"
Expand Down

0 comments on commit 2a21ecd

Please sign in to comment.