add Rock & Scroll

This commit is contained in:
4am 2024-03-31 16:15:57 -04:00
parent c25e2ace7b
commit bfa89b970a
69 changed files with 294 additions and 62 deletions

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,8 @@
#
# Attract mode for ROCK.N.SCROLL
# This file is automatically generated
#
ROCK.N.SCROLL=A
[eof]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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]

View File

@ -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

View File

@ -5,6 +5,7 @@
KONO
MU.TORERE
SEEGA
ROCK.N.SCROLL
NINE.MENS
PENSATE
WARI

View File

@ -9,5 +9,6 @@ KONO
MU.TORERE
SEEGA
NINE.MENS
ROCK.N.SCROLL
[eof]

View File

@ -11,6 +11,7 @@ TRACK.AND.FIELD
NINE.MENS
THE.DAM.BUSTERS
ONE.ON.ONE
ROCK.N.SCROLL
AMER.CHALLENGE
POOL
PITSTOP.II

Binary file not shown.

BIN
res/TITLE.HGR/ROCK.N.SCROLL Normal file

Binary file not shown.

Binary file not shown.

View File

@ -8,6 +8,7 @@
- Kono
- Mu Torere
- Nine Men's Morris
- Rock & Scroll
- Seega
- Wari

View File

@ -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

View 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:

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<EFBFBD><EFBFBD><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<EFBFBD><EFBFBD><EFBFBD><EFBFBD>€亗儎厗噲墛媽崕彁憭摂晼棙櫄洔潪煚、¥ウЖ┆<EFBFBD><EFBFBD><EFBFBD>辈炒刀犯购患骄坷谅媚牌侨墒颂臀闲岩釉罩棕仝圮蒉哙徕沅彐玷殛腱眍镳耱篝貊鼬<EFBFBD><EFBFBD><EFBFBD><EFBFBD>

View 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"

View 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

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1981958
!be24 2006161
!le16 571

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1969874
!be24 1993997
!le16 978

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1962232
!le16 287
!be24 1986193
!le16 294

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1963794
!le16 527
!be24 1987800
!le16 534

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1965666
!le16 493
!be24 1989717
!le16 500

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1968140
!le16 785
!be24 1992236
!le16 792

View File

@ -3,4 +3,4 @@
;
; This file is automatically generated
;
!word 23
!word 24

View File

@ -3,4 +3,4 @@
;
; This file is automatically generated
;
!word 34
!word 35

View File

@ -3,4 +3,4 @@
;
; This file is automatically generated
;
!word 38
!word 39

View File

@ -3,4 +3,4 @@
;
; This file is automatically generated
;
!word 53
!word 54

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1982529
!be24 2006732
!le16 306

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1983179
!be24 2007382
!le16 336

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1983515
!be24 2007718
!le16 303

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1638306
!be24 1647820
!le16 69

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1973492
!be24 1997615
!le16 1640

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1982911
!be24 2007114
!le16 67

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1981946
!be24 2006149
!le16 12

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1981128
!be24 2005331
!le16 766

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1979290
!be24 2003473
!le16 229

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1970852
!be24 1994975
!le16 2640

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1975490
!le16 949
!be24 1999613
!le16 969

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1982835
!be24 2007038
!le16 76

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1981894
!be24 2006097
!le16 52

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1982978
!be24 2007181
!le16 201

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1979519
!be24 2003702
!le16 335

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1979854
!be24 2004037
!le16 89

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1979943
!be24 2004126
!le16 92

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1980035
!be24 2004218
!le16 125

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1980160
!le16 679
!be24 2004343
!le16 699

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1980839
!be24 2005042
!le16 285

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1981124
!be24 2005327
!le16 4

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1983818
!be24 2008021
!le16 2370

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1977559
!be24 2001702
!le16 475

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1978034
!le16 478
!be24 2002177
!le16 498

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1968925
!le16 949
!be24 1993028
!le16 969

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 509483
!be24 517163
!le16 8184

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 525859
!be24 533539
!le16 8184

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 517667
!be24 525347
!le16 8192

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1961441
!le16 791
!be24 1985364
!le16 829

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1962519
!le16 1275
!be24 1986487
!le16 1313

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1964321
!le16 1345
!be24 1988334
!le16 1383

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1966159
!le16 1981
!be24 1990217
!le16 2019

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1975132
!be24 1999255
!le16 358

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1976439
!be24 2000582
!le16 1120

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1978512
!le16 778
!be24 2002675
!le16 798

View File

@ -4,5 +4,5 @@
; This file is automatically generated
;
!byte 0
!be24 1961071
!le16 370
!be24 1984972
!le16 392