mirror of
https://github.com/a2-4am/4sports.git
synced 2025-03-08 04:32:24 +00:00
add Rock & Scroll
This commit is contained in:
parent
c25e2ace7b
commit
bfa89b970a
BIN
res/ACTION.HGR.UNCOMPRESSED/ROCK.N.SCROLL
Normal file
BIN
res/ACTION.HGR.UNCOMPRESSED/ROCK.N.SCROLL
Normal file
Binary file not shown.
BIN
res/ACTION.HGR/ROCK.N.SCROLL
Normal file
BIN
res/ACTION.HGR/ROCK.N.SCROLL
Normal file
Binary file not shown.
8
res/ATTRACT/ROCK.N.SCROLL
Normal file
8
res/ATTRACT/ROCK.N.SCROLL
Normal file
@ -0,0 +1,8 @@
|
||||
#
|
||||
# Attract mode for ROCK.N.SCROLL
|
||||
# This file is automatically generated
|
||||
#
|
||||
|
||||
ROCK.N.SCROLL=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.
20
res/GAMEHELP/ROCK.N.SCROLL
Normal file
20
res/GAMEHELP/ROCK.N.SCROLL
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
|
||||
|
||||
|
||||
Get one of your pieces to the other
|
||||
|
||||
side of the board before your opponent
|
||||
|
||||
|
||||
|
||||
joystick, keyboard, or mouse
|
||||
|
||||
select move by number
|
||||
|
||||
press letter O to undo
|
||||
|
||||
|
||||
|
||||
Esc* * * * * * * * * * * * * * * * *quit
|
||||
[eof]
|
@ -49,6 +49,7 @@
|
||||
00001,PENSATE=Pensate
|
||||
00001,PITSTOP.II=Pitstop II
|
||||
10001,POOL=Pool
|
||||
00001,ROCK.N.SCROLL=Rock & Scroll
|
||||
00001,SEEGA=Seega
|
||||
00001,SHUFFLEBOARD=Shuffleboard
|
||||
00000,SKI.CRAZED=Ski Crazed
|
||||
|
@ -5,6 +5,7 @@
|
||||
KONO
|
||||
MU.TORERE
|
||||
SEEGA
|
||||
ROCK.N.SCROLL
|
||||
NINE.MENS
|
||||
PENSATE
|
||||
WARI
|
||||
|
@ -9,5 +9,6 @@ KONO
|
||||
MU.TORERE
|
||||
SEEGA
|
||||
NINE.MENS
|
||||
ROCK.N.SCROLL
|
||||
|
||||
[eof]
|
||||
|
@ -11,6 +11,7 @@ TRACK.AND.FIELD
|
||||
NINE.MENS
|
||||
THE.DAM.BUSTERS
|
||||
ONE.ON.ONE
|
||||
ROCK.N.SCROLL
|
||||
AMER.CHALLENGE
|
||||
POOL
|
||||
PITSTOP.II
|
||||
|
BIN
res/TITLE.HGR.UNPACKED/ROCK.N.SCROLL
Normal file
BIN
res/TITLE.HGR.UNPACKED/ROCK.N.SCROLL
Normal file
Binary file not shown.
BIN
res/TITLE.HGR/ROCK.N.SCROLL
Normal file
BIN
res/TITLE.HGR/ROCK.N.SCROLL
Normal file
Binary file not shown.
BIN
res/dsk/rock n scroll (4am pack).po
Normal file
BIN
res/dsk/rock n scroll (4am pack).po
Normal file
Binary file not shown.
@ -8,6 +8,7 @@
|
||||
- Kono
|
||||
- Mu Torere
|
||||
- Nine Men's Morris
|
||||
- Rock & Scroll
|
||||
- Seega
|
||||
- Wari
|
||||
|
||||
|
@ -91,10 +91,8 @@ Win, Lose, or Draw [DHGR] (+ Junior Edition, Second Edition)
|
||||
Wipeout
|
||||
|
||||
//idea:Bez collection (these are in woz-a-day)
|
||||
Rock 'N Scroll
|
||||
Weights and Treasure [has construction kit]
|
||||
Brain Machine [has construction kit]
|
||||
First Encounter [maybe not a good match]
|
||||
|
||||
//idea:board games
|
||||
A Question of Scruples
|
||||
|
51
res/ports/rock-n-scroll/Makefile
Normal file
51
res/ports/rock-n-scroll/Makefile
Normal file
@ -0,0 +1,51 @@
|
||||
# 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=ROCK.N.SCROLL
|
||||
LOADER=$(BUILDDIR)/LOADER.SYSTEM\#FF2000
|
||||
EXE=$(BUILDDIR)/ROCK.N.SCROLL\#068000
|
||||
COMPRESSED=src/OBJ.X
|
||||
SOURCES=$(wildcard src/*.a) $(COMPRESSED)
|
||||
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) $(COMPRESSED) | $(BUILDDIR)
|
||||
$(ACME) src/rock.n.scroll.a
|
||||
$(CADIUS) REPLACEFILE "$(BUILDDISK)" "/$(DISKVOLUME)/" "$(EXE)" -C
|
||||
@touch "$@"
|
||||
|
||||
$(RES): $(BUILDDIR)
|
||||
$(CADIUS) REPLACEFILE "$(BUILDDISK)" "/$(DISKVOLUME)/" "$@" -C
|
||||
@touch "$@"
|
||||
|
||||
$(COMPRESSED):
|
||||
$(EXOMIZER) src/OBJ@0x0900 -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/rock-n-scroll/src/OBJ
Normal file
BIN
res/ports/rock-n-scroll/src/OBJ
Normal file
Binary file not shown.
BIN
res/ports/rock-n-scroll/src/OBJ.X
Normal file
BIN
res/ports/rock-n-scroll/src/OBJ.X
Normal file
Binary file not shown.
1
res/ports/rock-n-scroll/src/lcase.ct
Executable file
1
res/ports/rock-n-scroll/src/lcase.ct
Executable file
@ -0,0 +1 @@
|
||||
€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<EFBFBD><EFBFBD><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<EFBFBD><EFBFBD><EFBFBD><EFBFBD>€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<EFBFBD><EFBFBD><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
25
res/ports/rock-n-scroll/src/loader.a
Normal file
25
res/ports/rock-n-scroll/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 13,"ROCK.N.SCROLL"
|
124
res/ports/rock-n-scroll/src/rock.n.scroll.a
Normal file
124
res/ports/rock-n-scroll/src/rock.n.scroll.a
Normal file
@ -0,0 +1,124 @@
|
||||
!cpu 6502
|
||||
*=$8000
|
||||
!to "build/ROCK.N.SCROLL#068000",plain
|
||||
!ct "src/lcase.ct"
|
||||
|
||||
!src "../common/src/constants.a"
|
||||
!src "../common/src/macros.a"
|
||||
|
||||
jmp start
|
||||
|
||||
compressed_data
|
||||
!bin "src/OBJ.X"
|
||||
DECRUNCH_FORWARDS = 1
|
||||
SHOW_PROGRESS_DURING_DECRUNCH = 1
|
||||
kExoProgressWidth = 18 ; depends on total size, max 38
|
||||
!src "../common/src/exodecrunch.a"
|
||||
|
||||
start
|
||||
+INIT_MACHINE
|
||||
print_loop
|
||||
lda LoadingText
|
||||
beq +
|
||||
jsr ROM_COUT
|
||||
inc print_loop+1
|
||||
bne print_loop
|
||||
inc print_loop+2
|
||||
bne print_loop
|
||||
+
|
||||
!if * != $B55F {
|
||||
!serious "Adjust prelaunch to patch JSR at ", *
|
||||
}
|
||||
jsr decrunch ; compressed data contains target address
|
||||
bit GFXMODE
|
||||
bit PAGE1
|
||||
bit HIRES
|
||||
bit FULLGFX
|
||||
jsr $900
|
||||
bit CLEARKBD
|
||||
jsr PRODOS_MLI
|
||||
!byte CMD_QUIT
|
||||
!word +
|
||||
+ !byte 4
|
||||
|
||||
get_crunched_byte
|
||||
lda compressed_data
|
||||
inc get_crunched_byte+1
|
||||
bne +
|
||||
inc get_crunched_byte+2
|
||||
+ rts
|
||||
|
||||
LoadingText
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " BEZ PRESENTS "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " ROCK AND SCROLL "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " BY "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " JOHN BESNARD "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text " COPYRIGHT 1987 "
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!text "______________________________________"
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
|
||||
!byte $8D,$8D,$8D
|
||||
|
||||
!text " SPECIAL COPY FOR FRIENDS OF BEZ",$8D,$8D,$8D,$8D
|
||||
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
!scrxor $40,"GAME"
|
||||
!scrxor $00," & "
|
||||
!scrxor $40,"ROUTINES"
|
||||
!scrxor $00,", "
|
||||
!scrxor $40,"COPYRIGHT"
|
||||
!scrxor $00," "
|
||||
!scrxor $40,"BEZ"
|
||||
!scrxor $00," 1987 "
|
||||
|
||||
!scrxor $00," "
|
||||
!scrxor $40,"MOCKINGBOARD"
|
||||
!scrxor $00,", "
|
||||
!scrxor $40,"COPYRIGHT"
|
||||
!scrxor $00," "
|
||||
!scrxor $40,"SWEET"
|
||||
!scrxor $00," "
|
||||
!scrxor $40,"MICRO"
|
||||
!scrxor $00," "
|
||||
|
||||
!scrxor $00," "
|
||||
|
||||
!byte $00
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1981958
|
||||
!be24 2006161
|
||||
!le16 571
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1969874
|
||||
!be24 1993997
|
||||
!le16 978
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1962232
|
||||
!le16 287
|
||||
!be24 1986193
|
||||
!le16 294
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1963794
|
||||
!le16 527
|
||||
!be24 1987800
|
||||
!le16 534
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1965666
|
||||
!le16 493
|
||||
!be24 1989717
|
||||
!le16 500
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1968140
|
||||
!le16 785
|
||||
!be24 1992236
|
||||
!le16 792
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 23
|
||||
!word 24
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 34
|
||||
!word 35
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 38
|
||||
!word 39
|
||||
|
@ -3,4 +3,4 @@
|
||||
;
|
||||
; This file is automatically generated
|
||||
;
|
||||
!word 53
|
||||
!word 54
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1982529
|
||||
!be24 2006732
|
||||
!le16 306
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1983179
|
||||
!be24 2007382
|
||||
!le16 336
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1983515
|
||||
!be24 2007718
|
||||
!le16 303
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1638306
|
||||
!be24 1647820
|
||||
!le16 69
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1973492
|
||||
!be24 1997615
|
||||
!le16 1640
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1982911
|
||||
!be24 2007114
|
||||
!le16 67
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1981946
|
||||
!be24 2006149
|
||||
!le16 12
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1981128
|
||||
!be24 2005331
|
||||
!le16 766
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1979290
|
||||
!be24 2003473
|
||||
!le16 229
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1970852
|
||||
!be24 1994975
|
||||
!le16 2640
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1975490
|
||||
!le16 949
|
||||
!be24 1999613
|
||||
!le16 969
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1982835
|
||||
!be24 2007038
|
||||
!le16 76
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1981894
|
||||
!be24 2006097
|
||||
!le16 52
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1982978
|
||||
!be24 2007181
|
||||
!le16 201
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1979519
|
||||
!be24 2003702
|
||||
!le16 335
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1979854
|
||||
!be24 2004037
|
||||
!le16 89
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1979943
|
||||
!be24 2004126
|
||||
!le16 92
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1980035
|
||||
!be24 2004218
|
||||
!le16 125
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1980160
|
||||
!le16 679
|
||||
!be24 2004343
|
||||
!le16 699
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1980839
|
||||
!be24 2005042
|
||||
!le16 285
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1981124
|
||||
!be24 2005327
|
||||
!le16 4
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1983818
|
||||
!be24 2008021
|
||||
!le16 2370
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1977559
|
||||
!be24 2001702
|
||||
!le16 475
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1978034
|
||||
!le16 478
|
||||
!be24 2002177
|
||||
!le16 498
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1968925
|
||||
!le16 949
|
||||
!be24 1993028
|
||||
!le16 969
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 509483
|
||||
!be24 517163
|
||||
!le16 8184
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 525859
|
||||
!be24 533539
|
||||
!le16 8184
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 517667
|
||||
!be24 525347
|
||||
!le16 8192
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1961441
|
||||
!le16 791
|
||||
!be24 1985364
|
||||
!le16 829
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1962519
|
||||
!le16 1275
|
||||
!be24 1986487
|
||||
!le16 1313
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1964321
|
||||
!le16 1345
|
||||
!be24 1988334
|
||||
!le16 1383
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1966159
|
||||
!le16 1981
|
||||
!be24 1990217
|
||||
!le16 2019
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1975132
|
||||
!be24 1999255
|
||||
!le16 358
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1976439
|
||||
!be24 2000582
|
||||
!le16 1120
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1978512
|
||||
!le16 778
|
||||
!be24 2002675
|
||||
!le16 798
|
||||
|
@ -4,5 +4,5 @@
|
||||
; This file is automatically generated
|
||||
;
|
||||
!byte 0
|
||||
!be24 1961071
|
||||
!le16 370
|
||||
!be24 1984972
|
||||
!le16 392
|
||||
|
Loading…
x
Reference in New Issue
Block a user