Skip to content

技術情報

GB Studio 1.2.1 (Supported Japanese Text ver.)

 

GB Studio 1.2.0 がリリースされました。

オフィシャル版は日本語テキストに対応していません。

ver.1.2.0を修正して日本語テキストに対応しました。

使用可能な文字はこちらです。

アルファベットは大文字のみ使用可能です。

 

・ダウンロード

 

Ver.1.2.1

GB Studio 1.2.1 for Windows 64-bit (インストーラー無)

GB Studio 1.2.1 for Windows 32-bit (インストーラー無)

GB Studio 1.2.1 for Mac

 

Ver.1.2.0

GB Studio 1.2.0 for Windows 64-bit (インストーラー無)

GB Studio 1.2.0 for Windows 32-bit (インストーラー無)

GB Studio 1.2.0 for Mac

 

・既存のプロジェクトで使用する場合

既存のプロジェクトには、日本語フォントファイルが存在しないので、そのままでは日本語が表示できません。

こちらの画像ファイルを、プロジェクト内の以下のディレクトリにコピーしてください。

 

(プロジェクトのフォルダ) / assets / ui /

 

 

ソースコード: cubicstyle/gb-studio

利用フォント: 美咲フォント

Dump the GBA BIOS using Multiboot.

I created a program to dump the GBA BIOS using the Raspberry Pi Advance Expansion Board.

As it is now, the tool that can be sucked out is gone, so please use it if you want to suck out yourself.

 

repository: https://github.com/cubicstyle/biosdump_rpa

I use the multiboot program of akkera102 and the example of DebkitPro.

 

How to use

 

  1. Connect communication port of expansion board and communication port of GBA main unit with communication cable (for GB pocket etc.)
  2. Start GBA with no cartridge inserted
  3. COMMAND

$ git clone https://github.com/cubicstyle/biosdump_rpa.git

$ cd biosdump_rpa

$ sudo ./biosdump

Waiting for GBA…
Sending header.
Getting encryption and crc seeds.
Seeds: d4, 95, ffffc5d1
Sending…
Waiting for checksum…
Gba: f157, Cal: f157
Boot Done.
Comm connect start…
Connect success!
Recieve start…
.

.

recive finish!

4. It is stored in the biosdump_rpa directory under the file name GBA.BIOS

 

devkitPro for Raspberry Pi

Debian package for using devkitPro with Raspberry Pi.
It can be installed easily.
Development of GBA, NDS can be started soon!
If you have a RasPiAdvance expansion board, you can write the built ROM to the cartridge.

 

  • Install
  1. Download the deb file from the following and save it in an arbitrary directory.
  2. In Shell, cd to the saved directory.
  3. Execute the following command at shell.

$ dpkg -i devkitPro_r50-raspberry_pi-linux.deb

 

  • Download

devkitPro_r50-raspberry_pi-linux.deb

Compressed only : devkitPro_r50-raspberry_pi-linux.tar.gz

 

  • devkitPro Version

$ arm-none-eabi-gcc -v
Using built-in specs.
COLLECT_GCC=./arm-none-eabi-gcc
COLLECT_LTO_WRAPPER=/usr/local/devkitPro/devkitARM/libexec/gcc/arm-none-eabi/8.2.0/lto-wrapper
Target: arm-none-eabi
Configured with: ../../gcc-8.2.0/configure –enable-languages=c,c++,objc,lto –with-gnu-as –with-gnu-ld –with-gcc –with-march=armv4t –enable-cxx-flags=-ffunction-sections –disable-libstdcxx-verbose –enable-poison-system-directories –enable-interwork –enable-multilib –enable-threads –disable-win32-registry –disable-nls –disable-debug –disable-libmudflap –disable-libssp –disable-libgomp –disable-libstdcxx-pch –enable-libstdcxx-time=yes –enable-libstdcxx-filesystem-ts –target=arm-none-eabi –with-newlib –with-headers=../../newlib-3.0.0/newlib/libc/include –prefix=/usr/local/devkitPro/devkitARM –enable-lto –with-system-zlib –with-bugurl=http://wiki.devkitpro.org/index.php/Bug_Reports –with-pkgversion=’devkitARM release 50′ –build=armv7l-unknown-linux-gnu
Thread model: single
gcc version 8.2.0 (devkitARM release 50)

 

  • Old revision

devkitPro_r47-raspberry_pi-linux.deb

devkitPro_r47-raspberry_pi-linux.tar.gz

GBAの開発環境をクラウド上に構築してみる

Game Boy Advent Calendar 2017 ということで、クリスマスだし昔のGBA開発ネタを公開してみることにしました。

自分のPCに開発環境を作らなくても、クラウド上に、ビルドから実行環境までを構築できます。
GBAのソフトを作ってみたいけど、開発環境を構築するのが難しくて分からないって人とか、面倒くさいなーって人に向いています。
経験者も未経験者の方も役に立ててもらえるのではないかと思います。
またGBA以外のソフトウェア開発などで応用して使える技術だと思うので参考にしてください。

Read More →