mirror of
https://github.com/a2-4am/4sports.git
synced 2025-04-06 12:38:01 +00:00
add Acey Deucey
This commit is contained in:
parent
1464c1c50e
commit
36ecaa1ce4
BIN
res/ACTION.HGR.UNCOMPRESSED/ACEY.DEUCEY
Normal file
BIN
res/ACTION.HGR.UNCOMPRESSED/ACEY.DEUCEY
Normal file
Binary file not shown.
BIN
res/ACTION.HGR/ACEY.DEUCEY
Normal file
BIN
res/ACTION.HGR/ACEY.DEUCEY
Normal file
Binary file not shown.
8
res/ATTRACT/ACEY.DEUCEY
Normal file
8
res/ATTRACT/ACEY.DEUCEY
Normal file
@ -0,0 +1,8 @@
|
||||
#
|
||||
# Attract mode for ACEY.DEUCEY
|
||||
# This file is automatically generated
|
||||
#
|
||||
|
||||
ACEY.DEUCEY=A
|
||||
|
||||
[eof]
|
BIN
res/CACHE00.IDX
BIN
res/CACHE00.IDX
Binary file not shown.
BIN
res/CACHE01.IDX
BIN
res/CACHE01.IDX
Binary file not shown.
BIN
res/CACHE10.IDX
BIN
res/CACHE10.IDX
Binary file not shown.
BIN
res/CACHE11.IDX
BIN
res/CACHE11.IDX
Binary file not shown.
@ -23,6 +23,7 @@
|
||||
#
|
||||
|
||||
11100,SLICKS=8bit-Slicks/2020
|
||||
00001,ACEY.DEUCEY=Acey Deucey/1982
|
||||
01000,ANCHORMAN=Anchorman/1988
|
||||
01100,ADVANCE=Advance to Boardwalk/1990
|
||||
00001,AUTOBAHN=Autobahn/1981
|
||||
|
@ -6,6 +6,7 @@ CHUCK.YEAGER
|
||||
CHECKERS
|
||||
CHAMP.BOXING
|
||||
BOP.N.WRESTLE2=BOP.N.WRESTLE
|
||||
ACEY.DEUCEY
|
||||
CHAMP.WRESTLE2=CHAMP.WRESTLE
|
||||
|
||||
[eof]
|
||||
|
@ -7,6 +7,7 @@ CHECKERS
|
||||
MICROCHESS
|
||||
GO.FOUR.IT
|
||||
DRAW.POKER
|
||||
ACEY.DEUCEY
|
||||
ODIN
|
||||
PENSATE
|
||||
ULTRACHECKERS
|
||||
|
@ -3,6 +3,7 @@
|
||||
#
|
||||
|
||||
PENSATE
|
||||
ACEY.DEUCEY
|
||||
ODIN
|
||||
GO.FOUR.IT
|
||||
ULTRACHECKERS
|
||||
|
@ -4,6 +4,7 @@
|
||||
|
||||
BLACK.BELT
|
||||
ANCHORMAN
|
||||
ACEY.DEUCEY
|
||||
CHAMP.BSKETBALL
|
||||
BOP.N.WRESTLE
|
||||
AUTOBAHN
|
||||
|
BIN
res/TITLE.HGR.UNPACKED/ACEY.DEUCEY
Normal file
BIN
res/TITLE.HGR.UNPACKED/ACEY.DEUCEY
Normal file
Binary file not shown.
BIN
res/TITLE.HGR/ACEY.DEUCEY
Normal file
BIN
res/TITLE.HGR/ACEY.DEUCEY
Normal file
Binary file not shown.
BIN
res/dsk/acey deucey (4am pack).po
Normal file
BIN
res/dsk/acey deucey (4am pack).po
Normal file
Binary file not shown.
@ -4,6 +4,7 @@
|
||||
|
||||
### New games
|
||||
|
||||
- Acey Deucey
|
||||
- Advance to Boardwalk
|
||||
- All New Family Feud
|
||||
- Anchorman
|
||||
|
55
res/ports/acey-deucey/Makefile
Normal file
55
res/ports/acey-deucey/Makefile
Normal file
@ -0,0 +1,55 @@
|
||||
# https://sourceforge.net/projects/acme-crossass/
|
||||
ACME=acme
|
||||
|
||||
# https://github.com/mach-kernel/cadius
|
||||
CADIUS=cadius
|
||||
|
||||
EXOMIZER=exomizer mem -lnone -P23 -f -q
|
||||
|
||||
BUILDDIR=build
|
||||
DISKVOLUME=ACEY.DEUCEY
|
||||
LOADER=$(BUILDDIR)/LOADER.SYSTEM\#FF2000
|
||||
EXE=$(BUILDDIR)/ACEY.DEUCEY\#068000
|
||||
COMPRESSED1=src/OBJ1.X
|
||||
COMPRESSED2=src/OBJ2.X
|
||||
SOURCES=$(wildcard src/*.a) $(COMPRESSED1) $(COMPRESSED2)
|
||||
RES=$(wildcard res/*) $(wildcard ../common/res/*)
|
||||
BUILDDISK=$(BUILDDIR)/$(DISKVOLUME).po
|
||||
|
||||
.PHONY: clean mount all
|
||||
|
||||
$(BUILDDISK): $(EXE) $(LOADER) $(RES)
|
||||
|
||||
$(LOADER): $(SOURCES) | $(BUILDDIR)
|
||||
$(ACME) src/loader.a
|
||||
$(CADIUS) REPLACEFILE "$(BUILDDISK)" "/$(DISKVOLUME)/" "$(LOADER)" -C
|
||||
@touch "$@"
|
||||
|
||||
$(EXE): $(SOURCES) $(COMPRESSED1) $(COMPRESSED2) | $(BUILDDIR)
|
||||
$(ACME) src/acey.deucey.a
|
||||
$(CADIUS) REPLACEFILE "$(BUILDDISK)" "/$(DISKVOLUME)/" "$(EXE)" -C
|
||||
@touch "$@"
|
||||
|
||||
$(RES): $(BUILDDIR)
|
||||
$(CADIUS) REPLACEFILE "$(BUILDDISK)" "/$(DISKVOLUME)/" "$@" -C
|
||||
@touch "$@"
|
||||
|
||||
$(COMPRESSED1):
|
||||
$(EXOMIZER) src/OBJ1@0x0900 -o "$@"
|
||||
|
||||
$(COMPRESSED2):
|
||||
$(EXOMIZER) src/OBJ2@0x0400 -o "$@"
|
||||
|
||||
mount: $(BUILDDISK)
|
||||
@open "$(BUILDDISK)"
|
||||
|
||||
clean:
|
||||
rm -rf "$(BUILDDIR)"
|
||||
|
||||
$(BUILDDIR):
|
||||
mkdir -p "$@"
|
||||
$(CADIUS) CREATEVOLUME "$(BUILDDISK)" "$(DISKVOLUME)" 140KB -C
|
||||
|
||||
all: clean mount
|
||||
|
||||
.NOTPARALLEL:
|
BIN
res/ports/acey-deucey/src/OBJ1
Normal file
BIN
res/ports/acey-deucey/src/OBJ1
Normal file
Binary file not shown.
BIN
res/ports/acey-deucey/src/OBJ1.X
Normal file
BIN
res/ports/acey-deucey/src/OBJ1.X
Normal file
Binary file not shown.
BIN
res/ports/acey-deucey/src/OBJ2
Normal file
BIN
res/ports/acey-deucey/src/OBJ2
Normal file
Binary file not shown.
BIN
res/ports/acey-deucey/src/OBJ2.X
Normal file
BIN
res/ports/acey-deucey/src/OBJ2.X
Normal file
Binary file not shown.
41
res/ports/acey-deucey/src/acey.deucey.a
Normal file
41
res/ports/acey-deucey/src/acey.deucey.a
Normal file
@ -0,0 +1,41 @@
|
||||
!cpu 6502
|
||||
*=$8000
|
||||
!to "build/ACEY.DEUCEY#068000",plain
|
||||
|
||||
!src "../common/src/constants.a"
|
||||
!src "../common/src/macros.a"
|
||||
|
||||
jmp start
|
||||
|
||||
compressed_data
|
||||
!bin "src/OBJ1.X"
|
||||
!bin "src/OBJ2.X"
|
||||
FORWARD_DECRUNCHING = 1
|
||||
SHOW_PROGRESS_DURING_DECRUNCH = 0
|
||||
!src "../common/src/exodecrunch.a"
|
||||
|
||||
start
|
||||
+INIT_MACHINE
|
||||
jsr decrunch ; compressed data contains target address
|
||||
!if * != $97A8 {
|
||||
!serious "Adjust prelaunch to patch JSR at ", *, " to JMP"
|
||||
}
|
||||
jsr $900
|
||||
bit CLEARKBD
|
||||
jsr decrunch
|
||||
ldx #$30 ; wait loop based on original game code
|
||||
- lda #$70
|
||||
jsr ROM_WAIT
|
||||
dex
|
||||
beq +
|
||||
bit KBD
|
||||
bpl -
|
||||
+ bit CLEARKBD
|
||||
jmp $40C
|
||||
|
||||
get_crunched_byte
|
||||
lda compressed_data
|
||||
inc get_crunched_byte+1
|
||||
bne +
|
||||
inc get_crunched_byte+2
|
||||
+ rts
|
25
res/ports/acey-deucey/src/loader.a
Normal file
25
res/ports/acey-deucey/src/loader.a
Normal file
@ -0,0 +1,25 @@
|
||||
!cpu 6502
|
||||
*=$2000
|
||||
!to "build/LOADER.SYSTEM#FF2000",plain
|
||||
|
||||
!src "../common/src/constants.a"
|
||||
!src "../common/src/macros.a"
|
||||
|
||||
+READ_ENTIRE_FILE parm_boot_open, parm_boot_read
|
||||
jmp (entry)
|
||||
|
||||
parm_boot_open
|
||||
!byte 3
|
||||
!word filename
|
||||
!word $2100
|
||||
!byte 0
|
||||
|
||||
parm_boot_read
|
||||
!byte 4
|
||||
!byte 1
|
||||
entry !word $8000
|
||||
!word $FFFF
|
||||
!word 0
|
||||
|
||||
filename
|
||||
!text 11,"ACEY.DEUCEY"
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2679622
|
||||
!be24 2694619
|
||||
!le16 630
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2663761
|
||||
!be24 2678686
|
||||
!le16 1543
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2650825
|
||||
!le16 574
|
||||
!be24 2665574
|
||||
!le16 581
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2653581
|
||||
!le16 935
|
||||
!be24 2668371
|
||||
!le16 949
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2656750
|
||||
!le16 924
|
||||
!be24 2671588
|
||||
!le16 931
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2660869
|
||||
!le16 1370
|
||||
!be24 2675748
|
||||
!le16 1398
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 43
|
||||
!word 44
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 62
|
||||
!word 63
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 64
|
||||
!word 65
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 88
|
||||
!word 89
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2680252
|
||||
!be24 2695249
|
||||
!le16 306
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2680902
|
||||
!be24 2695899
|
||||
!le16 336
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2681238
|
||||
!be24 2696235
|
||||
!le16 303
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2137591
|
||||
!be24 2146188
|
||||
!le16 69
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2667944
|
||||
!be24 2682869
|
||||
!le16 1640
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2680634
|
||||
!be24 2695631
|
||||
!le16 67
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2679610
|
||||
!be24 2694607
|
||||
!le16 12
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2678496
|
||||
!be24 2693493
|
||||
!le16 1062
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2675962
|
||||
!be24 2690941
|
||||
!le16 365
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2665304
|
||||
!be24 2680229
|
||||
!le16 2640
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2669942
|
||||
!le16 1522
|
||||
!be24 2684867
|
||||
!le16 1540
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2680558
|
||||
!be24 2695555
|
||||
!le16 76
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2679558
|
||||
!be24 2694555
|
||||
!le16 52
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2680701
|
||||
!be24 2695698
|
||||
!le16 201
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2676327
|
||||
!le16 438
|
||||
!be24 2691306
|
||||
!le16 456
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2676765
|
||||
!be24 2691762
|
||||
!le16 209
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2676974
|
||||
!be24 2691971
|
||||
!le16 107
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2677081
|
||||
!be24 2692078
|
||||
!le16 292
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2677373
|
||||
!be24 2692370
|
||||
!le16 791
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2678164
|
||||
!be24 2693161
|
||||
!le16 305
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2678469
|
||||
!be24 2693466
|
||||
!le16 27
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2681541
|
||||
!be24 2696538
|
||||
!le16 2370
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2673221
|
||||
!le16 897
|
||||
!be24 2688164
|
||||
!le16 915
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2674118
|
||||
!be24 2689079
|
||||
!le16 629
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2662239
|
||||
!le16 1522
|
||||
!be24 2677146
|
||||
!le16 1540
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 850475
|
||||
!be24 858155
|
||||
!le16 8184
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 866851
|
||||
!be24 874531
|
||||
!le16 8184
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 858659
|
||||
!be24 866339
|
||||
!le16 8192
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2649402
|
||||
!le16 1423
|
||||
!be24 2664117
|
||||
!le16 1457
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2651399
|
||||
!le16 2182
|
||||
!be24 2666155
|
||||
!le16 2216
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2654516
|
||||
!le16 2234
|
||||
!be24 2669320
|
||||
!le16 2268
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2657674
|
||||
!le16 3195
|
||||
!be24 2672519
|
||||
!le16 3229
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2669584
|
||||
!be24 2684509
|
||||
!le16 358
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2671464
|
||||
!be24 2686407
|
||||
!le16 1757
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2674747
|
||||
!le16 1215
|
||||
!be24 2689708
|
||||
!le16 1233
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 2648705
|
||||
!le16 697
|
||||
!be24 2663400
|
||||
!le16 717
|
||||
|
18
src/prelaunch/acey.deucy.a
Normal file
18
src/prelaunch/acey.deucy.a
Normal file
@ -0,0 +1,18 @@
|
||||
;license:MIT
|
||||
|
||||
!cpu 6502
|
||||
!to "build/PRELAUNCH.INDEXED/ACEY.DEUCY",plain
|
||||
*=$106
|
||||
|
||||
!source "src/prelaunch/common.a"
|
||||
|
||||
+ENABLE_ACCEL
|
||||
lda #$4C
|
||||
sta $97A8
|
||||
jsr $8000
|
||||
+DISABLE_ACCEL
|
||||
jmp $97A8+3
|
||||
|
||||
!if * > $1C0 {
|
||||
!error "code is too large, ends at ", *
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user