Team Doyobi

210

(20 replies, posted in Nintendo Handhelds)

That Nanoloop rom floating around is 1.2 or older, probably a bit older.
Does NOT work with EMS64 USB
DOES work with earlier EMS carts such as Smart Card 32m

1.3 works with both USB and 32m and the rom can probably easily be found on Google.
(nl13d.gb used to be available from nanoloop.de, same goes for nl15)

There is NO Nanoloop rom that can save your work if you run it on anything besides the actual Nanoloop cart.
(maybe some really hacky stuff can pull that off?)

You're better off buying a real Nanoloop cart. The roms are good for trying it out though.

I was just thinking the same thing, nordloef. smile




Guitarstep

212

(178 replies, posted in Collaborations)

SadPanda wrote:
_-_- wrote:

Don't know what track, but I might be in.

EDIT: Instant Death

lol, is that really your music alias? How do you say it? I haven't been this confused since I discovered ???. Updated the list.

It may be. Depends on the musical outcome.

213

(178 replies, posted in Collaborations)

Don't know what track, but I might be in.

EDIT: Instant Death

214

(10 replies, posted in Trading Post)

Aaand all of them are suddenly spoken for.

215

(10 replies, posted in Trading Post)

Everything is still for sale, even 1.6.

216

(10 replies, posted in Trading Post)

Bump.

For sale for real.

E-mail me at simon [at] moire [dot] se

I knew I could count on you. smile

No pun intended.

Thanks!

Hello!

I don't know much about coding, especially not C, ASM or anything hardware related.
But I really, really need to finish a project before this week ends.

What I need to do is rewrite a small piece of the source rom for the GBA Slideshow Builder, I need it to change picture every second instead of using the buttons to manually advance the slides.

I've got Devkit Advance running, I can compile some things fine, but not the .bin I need to use for this.
There's a file called makefile.mak that I tried making into a .bat (read a tutorial on compiling for the gba), but that didn't work.

CFLAGS    = -I c:\gba\include -c -g -O2 -mthumb-interwork -Wall -ffreestanding
ASFLAGS    = -mthumb-interwork
LDFLAGS = -L c:\gba\lib -T gbarom2mb

all : ufgbass.bin

ufgbass.bin : ufgbass.elf
    objcopy -v -O binary ufgbass.elf ufgbass.bin

ufgbass.elf : main.o
    ld $(LDFLAGS) -o ufgbass.elf main.o

main.o : main.c
    gcc $(CFLAGS) main.c

I don't know if this is for a different compiler or devkit or something, I have no idea at all.
I just know I need this project to be finished asap and would appreciate help.

And, I need the code to change the slides automatically.
I'm thinking I need to change these lines of code:

 // react to joypad presses
  while(1)
  {
    // copy current index
    imgNew = imgCurrent;
    if (!(PADREG & PAD_RIGHT)) imgNew++;
    if (!(PADREG & PAD_LEFT)) imgNew--;
    // wrap around if neccesary
    if (imgNew < 0) imgNew = imgCount - 1;
    if (imgNew >= imgCount) imgNew = 0;
    // copy image
    if (imgNew != imgCurrent)
    {
      waitVSync();
      copyImage(pScreen, imageinfo.list->start[imgNew]);
      imgCurrent = imgNew;
      // wait keyDelay frames
      for(keyDelayCount = keyDelay; keyDelayCount > 0; keyDelayCount--) 
      {
        // next time use shorter delay
        keyDelay = KEYREPEATDELAY;
        waitVSync();
        // both keys are released ?
        if ((PADREG & PAD_RIGHT) && (PADREG & PAD_LEFT)) 
        {
          // use initial delay 
          keyDelay = KEYWAITDELAY;
          // break from loop
          break;
        }
      }
    }
  }
}

Here is a link to the program:
http://www.gameboy-advance.net/emulated … e_show.htm

Here is the sourcerom:
http://moire.se/sourcerom.zip

It would mean alot to me if I could get some help with this.

219

(24 replies, posted in Nintendo Handhelds)

+ microtuning

- letters instead of blocks

220

(1,052 replies, posted in Graphics, Artwork & Design)

That Roland interface will do just fine!
Sounds like your using stereocables with monojacks.

You need a cable like this:
http://www.amazon.com/Hosa-CMP159-Feet- … y_MI_img_b

EDIT: Oops, already been posted. Oh well. smile

222

(10 replies, posted in Trading Post)

1.6 is already taken, so please stop emaling me about it. Haha.

fforet: Yes. That is the one. The reason for using that shell is because of the very same issue you have with your nl1.2 cart.

Krubbz: Of course! Every version is unique in some way.
1.2 for example is the most different of the bunch, it has got some interesting FM parametres and stereo delay functions that I find very interesting.

223

(10 replies, posted in Trading Post)

Sadly, I have to sell these. sad

1.3 - in good condition w/ sticker on grey common case - Selling for €48
1.2 - in turquoise tamagotchi-shell (for easy battery replacement) w/ official 1.2 sticker as well. - Selling for €60

1.6 - as new - Selling for €20

Located in Sweden, will ship anywhere.
simon [at] moire [dot] se

Modul8 is pretty simple if you're on a Mac.