If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

Aerobiz Supersonic (SNES)

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Aerobiz Supersonic

Also known as: Air Management II: Koukuuou wo Mezase (JP)
Developer: Koei
Publisher: Koei
Platform: SNES
Released in JP: April 2, 1993
Released in US: August 1994


SourceIcon.png This game has uncompiled source code.


Aerobiz got a sequel? Surely you can't be serious.

(I am serious, and don't call me Shirley.)

Source Code

Two small portions of C code are in the ROM. They can be found at the hex addresses listed below.

0x27F06:

                                    de - 'ハ') * 2) + 0x82a4;
			}
			else if ((code >= 'マ') && (code <= 'ミ')) {
				*npzstr = code + 0x82ae;
			}
			else if ((code >= 'ム') && (code <= 'モ')) {
				*npzstr = code + 0x82af;
			}
			else if ((code >= 'ヤ') && (code <= 'ヨ')) {

0x37F9A:

        sy = 0;
	ex = 32;
	ey = 32;



	if(FadeCurrentMode == 1){
		for(i = 0, moz = 0x10, kido = 0x0f;
(Source: Original TCRF research)