Use hardware.inc 5.0 constants
まだ誰も着手していません。
評価
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 初心者へのやさしさ
- 42/100
- issue の種類
- ドキュメント
- 明瞭さ
- おおむね明確
- 活発さ
- 停滞
調査の方向性
Hello World と Unbricked のチュートリアルセクションを見つけ、それらの定数を hardware.inc 5.0 と比較します。issue に示されている古い名前とハードコードされたハードウェア数量を置き換え、その後、更新された例で新しい命名規則と定数が一貫して使用されていることを確認します。
索引モデルが issue の本文から書いたものです。
説明
Right from the very beginning with Hello World, the tutorial uses constants from hardware.inc. Version 5.0, released 2025-06-22, changed the naming convention for bit number and mask constants, and also added a number of new constants for more hardware-related quantities that are currently hard-coded in the tutorial.
A few of the examples in Hello World:
ld a, LCDCF_ON | LCDCF_BGONwould now beld a, LCDC_ON | LCDC_BG_ON... and could explicitly specify more of the flag bits, likeLCDC_BG_9800WaitVBlank: ld a, [rLY] :: cp 144 :: jp c, WaitVBlankcan useLY_VBLANKfor144ld hl, $9800can beld hl, TILEMAP0
And some of the ones in Unbricked:
ld b, 160 :: ld hl, _OAMRAMwould now beld b, OAM_SIZE :: ld hl, STARTOF(OAM)ld a, 128 + 16andld a, 16 + 8would now beld a, 128 + OAM_Y_OFSandld a, 16 + OAM_X_OFSld a, P1F_GET_BTNwould now beld a, JOYP_GET_BUTTONS(and[rP1]would be[rJOYP])[_OAMRAM + 5]could be[STARTOF(OAM) + 1 * OBJ_SIZE + OAMA_X](i.e. the X coord of OBJ 1)- etc
- 主要言語
- Assembly
- スター
- 179
- フォーク
- 64
- 平均マージ
- 7日 22時間
- マージ済み PR(30日)
- 1
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
gbdev/gb-asm-tutorial のほかの issue
-
難易度 1/5 1時間未満 初心者へのやさしさ 85/100
gbdev/gb-asm-tutorial#194 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 68/100
gbdev/gb-asm-tutorial#184 · コメント 1 件 ·
-
good first issue
難易度 1/5 1時間未満 初心者へのやさしさ 75/100
gbdev/gb-asm-tutorial#141 · コメント 2 件 · リアクション 2 件 ·
-
難易度 1/5 1時間未満 初心者へのやさしさ 65/100
gbdev/gb-asm-tutorial#109 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 55/100
gbdev/gb-asm-tutorial#183 ·
gbdev/gb-asm-tutorial の issue をすべて見る
似ている issue
-
難易度 1/5 1時間未満 初心者へのやさしさ 95/100
Git-it-App/git-it-electron#1047 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
neondatabase/website#5944 ·
-
📕documentation
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
db-ux-design-system/core-web#8239 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
libsdl-org/sdlwiki#1008 ·
-
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100