Skip to content

Commit 6a8273d

Browse files
committed
update files for 5.2.1 release
add vasm makefile
1 parent feb7eb3 commit 6a8273d

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
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 (23-Dec-2025)",$D
10633+
DC.B " ACTION REPLAY AMIGA V5.2.1 (24-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

-1 Bytes
Binary file not shown.

Action Replay 5.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Action Replay 5 Update History
22

3-
v5.2.1 (??-Dec-2025)
3+
v5.2.1 (24-Dec-2025)
44
- improved VBR processing
55
- fixed issue with D0 being corrupted in setActivateMode function
66
- added CAPS lock key support

makefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Assemble Action Replay
2+
3+
options=-L ar5.lst
4+
compiler=vasmm68k_mot
5+
6+
dbg:
7+
$(compiler) -Fhunkexe $(options) -no-opt -o ar5 AR5.ASM -Ddbg=1 -Dpistorm=0 -Darhardware=0 -Darsoft=0 -Ddemon2=0
8+
9+
pistorm:
10+
$(compiler) -Fhunkexe $(options) -no-opt -o ar5 AR5.ASM -Ddbg=0 -Dpistorm=1 -Darhardware=0 -Darsoft=0 -Ddemon2=0
11+
ar5 ar5.bin
12+
13+
soft:
14+
$(compiler) -Fhunkexe $(options) -no-opt -o ar5.dat AR5.ASM -Ddbg=0 -Dpistorm=0 -Darhardware=0 -Darsoft=1 -Ddemon2=0
15+
16+
hwv1:
17+
$(compiler) -Fhunkexe $(options) -no-opt -o ar5 AR5.ASM -Ddbg=0 -Dpistorm=0 -Darhardware=1 -Darsoft=0 -Ddemon2=0
18+
ar5 artestrom
19+
20+
hwv2:
21+
$(compiler) -Fhunkexe $(options) -no-opt -o ar5 AR5.ASM -Ddbg=0 -Dpistorm=0 -Darhardware=1 -Darsoft=0 -Ddemon2=1
22+
ar5 artestrom
23+
24+
clean:
25+
-delete ar5
26+
-delete artestrom
27+

0 commit comments

Comments
 (0)