Skip to content

Commit

Permalink
gfss v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
uniabis committed Jul 3, 2023
1 parent 8db33cc commit fcd979d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
6 changes: 3 additions & 3 deletions gfss/readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# ガルフォース カオスの攻防 スムーススクロールパッチ v0.0-alpha
# ガルフォース カオスの攻防 スムーススクロールパッチ v0.1

## 概要

Expand All @@ -8,7 +8,7 @@
- RAM64KB以上 内16KB利用
- VRAM64KB以上 内32KB利用
- ASCII16メガロムマッパー 2Mbit 16ブロック 内9ブロック利用
- デフォルト設定ではMSX2バージョンアップアダプタ未対応
- MSX2バージョンアップアダプタ対応設定の動作は未確認

## パッチ適用方法

Expand All @@ -27,7 +27,7 @@ gfss [入力ファイルパス] [出力ファイルパス]

C89以降のCコンパイラで512KB程度の利用可能メモリとバイナリファイルアクセスが可能な環境であればおそらく問題ありません。

## 既知のバグ
## v0.1で修正されたバグ

- 一部のスプライトアニメーションパターンが化けます。

20 changes: 14 additions & 6 deletions gfss/z80/gfssbd25.sz
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@
; DE DESTINATION VRAM ADDRESS
; BC LENGTH
LDIRVM_EX:
LD A, B
LD B, C
LD C, A
LD A, C
OR A
JR NZ, .nzl
DEC B
.nzl:
LD C, B
LD B, A
INC C

.lp2:
Expand Down Expand Up @@ -46,9 +50,13 @@ LDIRVM_EX:
; DE DESTINATION RAM ADDRESS
; BC LENGTH
LDIRMV_EX:
LD A, B
LD B, C
LD C, A
LD A, C
OR A
JR NZ, .nzl
DEC B
.nzl:
LD C, B
LD B, A
INC C

EX DE, HL
Expand Down
4 changes: 4 additions & 0 deletions gfss/z80/gfssmemo.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ BANK0/8 バンク共通パッチコード(割り込み関係など)
(CCEC).b キャラ別パワーアップコード?
(CCEE).b パワーアップ
(CD17).b 00:通常 01:パワーアップアイテム接触?
(CD37).w ???
(D035).b 00:通常 00以外:ダメージ
(D036).b 00:通常 00以外:ダメージ後無敵期間カウンタ?
Expand Down

0 comments on commit fcd979d

Please sign in to comment.