Skip to content

Commit

Permalink
Add more known ROM versions
Browse files Browse the repository at this point in the history
Amiga 600s came with three different revisions of 2.05, added the
missing ones so that they don't show 2.0x.

Also add the 3.2.1 and 3.2.2 ROMs that were released as new ROMs after
3.2. There are significant changes between 3.2 and the other revisions,
particularly around behaviour when no floppies are connected. So, I
think it would be handy to identify them.
  • Loading branch information
LinuxJedi authored and keirf committed Jul 22, 2024
1 parent eec195f commit e58293a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions testkit/kickmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ static struct kick_ver {
{ 36, -1, "1.4 beta" },
{ 37, 175, "2.04" },
{ 37, 299, "2.05" },
{ 37, 300, "2.05" },
{ 37, 350, "2.05" },
{ 37, -1, "2.0x" },
{ 39, -1, "3.0" },
{ 40, -1, "3.1" },
Expand All @@ -44,6 +46,8 @@ static struct kick_ver {
{ 44, -1, "3.5" },
{ 45, -1, "3.9" },
{ 46, -1, "3.1.4" },
{ 47, 102, "3.2.1" },
{ 47, 111, "3.2.2" },
{ 47, -1, "3.2" },
{ 50, -1, "MorphOS1" },
{ 51, -1, "MorphOS2" },
Expand Down

2 comments on commit e58293a

@TheBajaGuy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe you are missing these (taken from the labels/silkscreen on my licensed mask-ROM/EPROM collection):
3.0: 39.106 (either A1200 or A4000)
3.1 (Multiples): v40.63 (A500/A600/A2000 ), v40.68 - (A500/A600/A2000 & A4K/A1200), v40.70 (A4K) v40.72 (A4K) - Some of the latter versions might be only for the A4KT
3.1.4: 46.143 (All)
3.2: 47.96 (All)

@keirf
Copy link
Owner

@keirf keirf commented on e58293a Aug 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe you are missing these (taken from the labels/silkscreen on my licensed mask-ROM/EPROM collection): 3.0: 39.106 (either A1200 or A4000) 3.1 (Multiples): v40.63 (A500/A600/A2000 ), v40.68 - (A500/A600/A2000 & A4K/A1200), v40.70 (A4K) v40.72 (A4K) - Some of the latter versions might be only for the A4KT 3.1.4: 46.143 (All) 3.2: 47.96 (All)

All of 39.x, 40.x, 46.x, 47.x are wildcarded to match on any minor version value.

Please sign in to comment.