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

Commit

Permalink
68000 can be selected from CPU_68000.txt file
Browse files Browse the repository at this point in the history
  • Loading branch information
HoraceAndTheSpider committed Dec 30, 2017
1 parent a165ce6 commit 5caa342
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
File renamed without changes.
11 changes: 11 additions & 0 deletions settings/CPU_68040.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
AlienBreed3DAGA
AlienBreed3DCD32
AlienBreed3D2AGA
FrontierCD32
GloomAGA
GloomCD32
GuardianCD32
Gunship2000AGA
Gunship2000CD32
StarCrusaderAGA
WingCommanderCD32
9 changes: 7 additions & 2 deletions uae_config_maker.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,8 +678,13 @@ def do_scan(input_directory, pathname,output_directory):
if check_list("CPU_ClockSpeed_28.txt", this_file) is True:
clock_speed = 28

# ' cpu model 040
if check_list("CPU_040.txt", this_file) is True:

# ' 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"
_24_bit_address = False

Expand Down

0 comments on commit 5caa342

Please sign in to comment.