Skip to content

Commit feb7eb3

Browse files
committed
prep for 5.2.1 release
1 parent 21dc71a commit feb7eb3

File tree

5 files changed

+29
-9
lines changed

5 files changed

+29
-9
lines changed

AR5.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10630,7 +10630,7 @@ ChangedToText:
1063010630

1063110631
aboutText:
1063210632
DC.B "********************************************************************************"
10633-
DC.B " ACTION REPLAY AMIGA V5.2.1-dev (18-Dec-2025)",$D
10633+
DC.B " ACTION REPLAY AMIGA V5.2.1 (23-Dec-2025)",$D
1063410634
DC.B " Developed by REbEL / QUARTEX",$D
1063510635
DC.B " Hardware Engineering by NA103 and GERBIL",$D,$D
1063610636
DC.B " Based upon Action Replay MKIII (Datel Electronics)",$D

Action Replay 5 Manual.pdf

5.5 KB
Binary file not shown.

Action Replay 5.txt

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
11
Action Replay 5 Update History
22

3-
v5.2.0 (31-Oct-2025)
3+
v5.2.1 (??-Dec-2025)
4+
- improved VBR processing
5+
- fixed issue with D0 being corrupted in setActivateMode function
6+
- added CAPS lock key support
7+
- fixed issue with beamcon0 getting corrupted
8+
- added French keymap
9+
- fixed issue with bitplane DMA not being enabled correctly with mem
10+
watches
11+
- fixed issue with int5 vector when viewed with M command
12+
- updated memory control prefs to better handle different kickstart
13+
versions
14+
- resetcfg command handles different memory configurations
15+
- external memory address in prefs screen was not lined up correctly
16+
- boot selector / bootblock coder / drive controls correctly
17+
enabled/disabled according to kickstart version
18+
- savecfg correctly handles flash chip with 16k sector size
19+
- autoconfig handling improved to work more like AR3
20+
- savePrefs was saving corrupt data
421

22+
v5.2.0 (31-Oct-2025)
523
- stop using address $204 as work space
624
- RF command - enable fpu on 060, handle missing fpu on 040
725
- SQR command - dont restart if error shown
@@ -43,7 +61,7 @@ v5.2.0 (31-Oct-2025)
4361
- made action replay memory checker routine (ARRAM) more robust
4462
- Updated flash routine to only skip 2 bytes at start instead of 4
4563

46-
V5.1.0 (12-Jun-2025)
64+
v5.1.0 (12-Jun-2025)
4765
- fix double triggering issue in software mode
4866
- fix TS command corrupting memory
4967
- ensure AGA palette bank 0 is selected after palette restore

ar5flasher.e

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ PROC main()
7373
DEF response[100]:STRING
7474
DEF startoffset
7575

76-
WriteF('Action Replay 5 Flash Tool v1.2.1 by REbEL/QTX\n\n')
76+
WriteF('Action Replay 5 Flash Tool v1.2.2 by REbEL/QTX\n\n')
7777

7878
IF StrLen(arg)=0
7979
WriteF('Usage: ar5flasher <filename>\n\n')
@@ -130,13 +130,13 @@ PROC main()
130130
RETURN
131131
ENDIF
132132

133-
id:=Long(romFile+$7c) AND $ffffc000
133+
id:=Long(romFile+$7c) AND $fffc0000
134134
IF id<>arbase
135135
WriteF('Error: Incorrect ROM version for this hardware.\nYou need the DeMoN v\d ROM\n\n',IF arbase=$400000 THEN 1 ELSE 2)
136136
Dispose(romFile)
137137
RETURN
138138
ENDIF
139-
IF arbase=$a80000
139+
IF arbase<>$400000
140140
startoffset:=2
141141
ELSE
142142
startoffset:=4
@@ -243,4 +243,4 @@ PROC main()
243243
Dispose(romFile)
244244
ENDPROC
245245

246-
CHAR '$VER: ar5flasher 1.2.1-31102025',0
246+
CHAR '$VER: ar5flasher 1.2.2-20112025',0

ar5flasher.readme

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
Action Replay 5 Standalone Flasher Utility V1.2.1
3+
Action Replay 5 Standalone Flasher Utility V1.2.2
44
-------------------------------------------------
55

66
This utility is for flashing the DeMoN cartridge. It relies on the presence of
@@ -89,4 +89,6 @@ V1.1 - Updated to support new DeMoN hardware (26-May-2025)
8989
V1.2 - Updated to add support for amd 29f010 flash chip (30-Sep-2025)
9090

9191
V1.2.1 - Added checks for correct DeMoN ROM version
92-
- Updated flash routine to only skip first 2 bytes (31-Oct-2025)
92+
- Updated flash routine to only skip first 2 bytes (31-Oct-2025)
93+
94+
V1.2.2 - Minor updates for future proofing (20-Nov-2025)

0 commit comments

Comments
 (0)