File tree Expand file tree Collapse file tree 4 files changed +29
-2
lines changed
Expand file tree Collapse file tree 4 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -10630,7 +10630,7 @@ ChangedToText:
1063010630
1063110631aboutText:
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
Original file line number Diff line number Diff line change 11Action 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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments