remove Battle Chess (moved to 4sports)

This commit is contained in:
4am 2021-02-17 12:34:10 -05:00
parent 50590c3336
commit dd7e038afe
22 changed files with 2 additions and 81 deletions

Binary file not shown.

Binary file not shown.

View File

@ -13,8 +13,6 @@ BATMAN2=Type(06),AuxType(3FF8),Access(C3)
BATMAN3=Type(06),AuxType(3FF8),Access(C3)
BATMAN4=Type(06),AuxType(3FF8),Access(C3)
BATMAN5=Type(06),AuxType(3FF8),Access(C3)
BATTLE.CHESS=Type(06),AuxType(3FF8),Access(C3)
BATTLE.CHESS2=Type(06),AuxType(3FF8),Access(C3)
COLUMNS=Type(06),AuxType(3FF8),Access(C3)
D.GENERATION=Type(06),AuxType(3FF8),Access(C3)
DEATH.SWORD=Type(06),AuxType(3FF8),Access(C3)

Binary file not shown.

View File

@ -20,7 +20,6 @@ AZTEC=Type(06),AuxType(1FF8),Access(C3)
BALLBLAZER=Type(06),AuxType(1FF8),Access(C3)
BANDITS=Type(06),AuxType(1FF8),Access(C3)
BATMAN=Type(06),AuxType(1FF8),Access(C3)
BATTLE.CHESS=Type(06),AuxType(1FF8),Access(C3)
BCS.QUEST=Type(06),AuxType(1FF8),Access(C3)
BEACH.HEAD=Type(06),AuxType(1FF8),Access(C3)
BEACH.HEAD.II=Type(06),AuxType(1FF8),Access(C3)

View File

@ -1,10 +0,0 @@
#
# Attract mode for BATTLE.CHESS
# This file is automatically generated
#
ARTWORK.SHR/BATTLE.CHESS=C
ACTION.DHGR/BATTLE.CHESS2=B
ACTION.DHGR/BATTLE.CHESS=B
[eof]

View File

@ -27,7 +27,6 @@ BAD.DUDES=Type(04),AuxType(8000),Access(C3)
BALLBLAZER=Type(04),AuxType(8000),Access(C3)
BANDITS=Type(04),AuxType(8000),Access(C3)
BATMAN=Type(04),AuxType(8000),Access(C3)
BATTLE.CHESS=Type(04),AuxType(8000),Access(C3)
BATTLE.CRUISER=Type(04),AuxType(8000),Access(C3)
BATTLEZONE=Type(04),AuxType(8000),Access(C3)
BCS.QUEST=Type(04),AuxType(8000),Access(C3)

View File

@ -1,24 +0,0 @@
Play Chess with cartoon violence
joystick or keyboard
move selection with arrow keys or
I
move J L move
K
return or space to select position
Space* * * * * * * * * * * * * * * start
Esc* * * * * * * * * * * menu / settings
T* * * * take back R * * * * * *replay
F* * * *force move S * * *suggest move
V* * *toggle sound W * * * toggle walk
C* * toggle combat
[eof]

View File

@ -26,7 +26,6 @@
1000,BALLBLAZER
0001,BANDITS
1110,BATMAN
0110,BATTLE.CHESS
0001,BATTLE.CRUISER
0001,BATTLEZONE
1001,BCS.QUEST=BC's Quest for Tires

View File

@ -5,7 +5,6 @@
BAD.DUDES3=BAD.DUDES
ROBOCOP2=ROBOCOP
SPIDERBOT4=SPIDERBOT
BATTLE.CHESS2=BATTLE.CHESS
RADWARRIOR2=RADWARRIOR
RAMPAGE2=RAMPAGE

View File

@ -6,6 +6,5 @@ DEATH.SWORD4=DEATH.SWORD
PLATOON3=PLATOON
VICTORY.ROAD3=VICTORY.ROAD
QIX3=QIX
BATTLE.CHESS
[eof]

View File

@ -6,6 +6,5 @@ THEXDER
SS.FOOTBALL
VICTORY.ROAD
PIPE.DREAM
BATTLE.CHESS
[eof]

View File

@ -4,7 +4,6 @@
GUARDIAN
SS.BASEBALL
BATTLE.CHESS
BRUCE.LEE
CROSSFIRE
PIPE.DREAM

Binary file not shown.

View File

@ -4,7 +4,6 @@ AIRHEART=Type(06),AuxType(4000),Access(C3)
ALIENS=Type(06),AuxType(4000),Access(C3)
BAD.DUDES=Type(06),AuxType(4000),Access(C3)
BATMAN=Type(06),AuxType(4000),Access(C3)
BATTLE.CHESS=Type(06),AuxType(4000),Access(C3)
BRUCE.LEE=Type(06),AuxType(4000),Access(C3)
COLUMNS=Type(06),AuxType(4000),Access(C3)
D.GENERATION=Type(06),AuxType(4000),Access(C3)

View File

@ -2,6 +2,7 @@
## Games moved to [Total Replay II: Instant Replay](https://github.com/a2-4am/4sports)
- Battle Chess
- California Games
- Karate Champ
- Summer Games

View File

@ -31,6 +31,7 @@ Pig Pen
Rear Guard
Robot Battle
Shuttle Intercept
Space Kadet
Starball
Super Puckman
Super Taxman II
@ -56,7 +57,6 @@ Vortex
//4am crack (unreleased)
Galactic Attack
Infiltrator II
Space Kadet
Zoo Master
//TODO(woz-imaged but uncracked)

View File

@ -1,36 +0,0 @@
;license:MIT
;(c) 2020 by qkumba/Frank M.
!cpu 6502
!to "build/PRELAUNCH/BATTLE.CHESS",plain
*=$106
!source "src/prelaunch/common.a"
+ENABLE_ACCEL
inc $3F4 ; force reboot
lda #$50
sta $933
lda #2
sta $934
ldy #(callback_e - callback) - 1
- lda callback, y
sta $250, y
dey
bpl -
jmp $800 ; decompress
callback !pseudopc $250 {
sta $C008
bit $C083
jsr DisableAccelerator
sta $C05E ; fix //c and //c+ DHGR setting
bit $C08B
sta $C009
jmp $C00
}
callback_e
!if * > $1C0 {
!error "code is too large, ends at ", *
}