初期のGBAのプロトタイプには、IR信号を送受信するためのIRポートが内蔵されていました。このポートを使って、他のGBAや旧CGBモデル、テレビのリモコンなどと通信することができたのです。
しかし、任天堂は外付けの赤外線アダプタ(シリアル通信ポートに接続し、汎用モードでアクセスする)を提供することを検討しているようです。
また、ゲームのカートリッジにIRポートを内蔵することも理論的には可能です(昔のハドソンのゲームにはありました)。
よって、以降の内容はプロトタイプ版での内容になります。
Bit Expl.
0 Transmission Data (0=LED Off, 1=LED On)
1 READ Enable (0=Disable, 1=Enable)
2 Reception Data (0=None, 1=Signal received) (Read only)
3 AMP Operation (0=Off, 1=On)
4 IRQ Enable Flag (0=Disable, 1=Enable)
5-15 Not used
When IRQ is enabled, an interrupt is requested if the incoming signal was 0.119us Off (2 cycles), followed by 0.536us On (9 cycles) - minimum timing periods each.
When transmitting an IR signal, note that it'd be not a good idea to keep the LED turned On for a very long period (such like sending a 1 second synchronization pulse). The recipient's circuit would treat such a long signal as "normal IR pollution which is in the air" after a while, and thus ignore the signal.
Received data is internally latched. Latched data may be read out by setting both READ and AMP bits.
Note: Provided that you don't want to receive your own IR signal, be sure to set Bit 0 to zero before attempting to receive data.
After using the IR port, be sure to reset the register to zero in order to reduce battery power consumption.