Page 1 of 19 1234511 ... LastLast
Results 1 to 10 of 184

Thread: NeoDS - Neo Geo AES/MVS Emulator for Nintendo DS

                  
   
  1. #1
    Won Hung Lo wraggster's Avatar
    Join Date
    Apr 2003
    Location
    Nottingham, England
    Age
    52
    Posts
    139,491
    Blog Entries
    3209
    Rep Power
    50

    NDS NeoDS - Neo Geo AES/MVS Emulator for Nintendo DS

    ingramb has today released a major shocker for the Nintendo DS Emulation Scene and that is a Neo Geo AES/MVS Emulator for Nintendo DS that he has been working on for a year. Games like windjammers, Metal Slug and Fatal Fury work either perfect of near perfect.

    Heres the full details

    NeoDS v0.1.0 by Ben Ingram
    Website: http://groups.google.com/group/neods

    If you have questions, READ THIS DOCUMENT FIRST!!! . If you still have questions, email me at ingramb AT gmail DOT com. I will be happy to help, but possibly slightly annoyed if your question is answered in this document.

    INTRODUCTION

    This is a NeoGeo AES/MVS emulator for the Nintendo DS. It can run all types of NeoGeo roms with some limitations.

    Currently emulated:

    * M68000 cpu (cyclone)
    * Z80 cpu (DrZ80)
    * All forms of NeoGeo protection/encryption
    * Graphics
    * ADPCM audio
    * PSG audio

    Not emulated:

    * FM audio
    * Raster effects
    * Multiplayer
    * Some timings are not that accurate

    FM audio has already been done in jEnesisDS, so it is possible in theory. It will be hard to squeeze it into NeoDS, as both the ARM7 and ARM9 are pretty busy. But I will try. Most of the graphics in NeoDS are drawn with textured quads. Emulating raster effects using this method would require more polygons per frame than the DS is capable of (as far as I can tell). It may be possible to emulate raster effects using the DS 2D hardware, but there are lots of reasons why this would be difficult.

    USING THE EMULATOR

    Required:
    * Nintendo DS (lite)
    * DLDI compatible flash card

    First, you need to patch NeoDS.nds for your DLDI flash card (NOTE - not all flashcards require patching). See here: http://chishm.drunkencoders.com/DLDI/index.html. Please don't email me for help about this, there are plenty of places online that explain how this works.

    Next you will need to convert some NeoGeo roms (mslug.zip for example). You also need a bios rom (neogeo.zip). NeoDS uses the same rom sets as MAME, so make sure your games work in MAME before proceeding. Put all the roms you want to convert along with the bios together in a folder. Copy NeoDSConvert.exe into the same folder. Run NeoDSConvert, and it will convert all the NeoGeo roms in that folder. The converted roms will have the *.neo extension.

    Copy the DLDI patched NeoDS.nds, and all the *.neo roms into the root of your flashcard. Run NeoDS.nds. The main menu should load, showing you a list of all the roms on your card. Use the arrow keys to select, and press start to choose. The rom should load, and you should be playing. You can load a rom without audio which will improve frame rate, but you won't get any sound (obviously). Once a game is loaded without audio, the only way to get audio back is to reload the game. Some games will freeze with audio disabled, so be warned!

    Controls
    [Arrow keys] - Arrow keys
    [A, B, X, Y] - NeoGeo face buttons
    [Start] - Start
    [Select] - Coin

    The NeoDS gui is controlled with the stylus.
    * Video - Video can be normal or scaled. Normal is a cropped screen. Scaled shows the full screen, but scaled down to fit.

    * CPU Clock- The NeoGeo cpu can be underclocked. This can actually make some games run faster! It is easier for NeoDS to emulate a slower cpu, and some NeoGeo games don't use the full cpu power anyway. Experiment and see.

    * Screen Off - The lower screen can be turned off. Touch anywhere to turn it back on.

    * Load rom - Load a new game

    Please report any crashes to me. The more info you can give me, the better. Thanks!

    ADVANCED

    You can run NeoDSConvert from the command line. In this case, it takes up to 2 parameters.
    -bios0 use the euro bios
    -bios1 use the euro-s1 bios
    -bios2 use the us bios
    -bios3 use the us-e bios
    -bios4 use the asia bios
    -bios5 use the japan bios
    -bios6 use the japan-s2 bios
    -bios7 use the japan-s1 bios
    -bios8 use the uni-bios.10 bios
    -bios9 use the uni-bios.11 bios
    -bios10 use the debug bios
    -bios11 use the asia-aes bios
    If there is another parameter, it will be interpreted as the name of the game, as given to MAME. In this case, only this rom will be converted.

    For example, pretend you want to convert Metal Slug 1, using the japan-s2 bios. Create a new directory (C:\roms). Copy mslug.zip and NeoDsConvert.exe into C:\roms. To open a command line, click start, select "run...", type "cmd", and press enter. Type "cd c:\roms". Press enter. Then type "NeoDSConvert -bios6 mslug". Press enter.

    TODO
    * Save states
    * Faster M68k cpu core
    * Improved stability
    * FM audio (?)
    * Raster effects (?)
    * Wifi multiplayer (?)
    * Clean up NeoDSConvert source if I feel like it

    TECHNICAL NOTES

    NeoGeo games can be close to 100MB in size, while the ds only has 4MB of ram. Graphics, sound, and program code all need to be streamed into ram constantly while the emulator is running. NeoDs uses a modified libfat which has a lookup table to vastly speed up seek times. In the future, slot2 ds ram expansion packs could provide some speed up. But they only have 32MB, so games will still have to stream.

    The emulator uses a slightly modified version of Cyclone for the m68k core. The memory handlers are all done in assembly code and integrated into the core. The jump table is also compressed using a series of sub jump tables. This uses an extra arm instruction to decode each opcode, but reduces the .nds file size by ~200k, and improves cache utilization. This seems to give a slight speed increase. My feeling is that cpu emulation is heavily memory bound. I think a smaller m68k core that fit mostly into the TCM could be much faster than cyclone, even if it needed more instructions to execute each opcode.

    The NeoGeo sprite graphics are all done with textured quads using the ds 3d hardware. The NeoGeo tile layer is done with a ds tile background. Doing raster effects with quads is possible in theory, but changing quads per-scanline would need way more quads per frame than the ds is capable of rendering. 2d sprites could be used instead of quads, but this has several problems. The NeoGeo can render many more sprites than the ds, so it would take a complex hblank handler to swap them on a per-scanline basis. Also, the ds can only address 1024 sprites at once. This corresponds to 256k worth of vram, which is half what I can get using quads.

    The NeoGeo adpcm audio is streamed from the card and decoded in software because the NeoGeo's audio format doesn't quite match the ds hardware format. The NeoGeo PSG is mapped directly to the ds PSG hardware. FM audio would probably have to be done on the arm7. But the arm7 has very little memory, and can't afford any slowdown (or else the audio will be choppy). A faster and smaller Z80 core might be needed first.

    LICENCE

    The gui code is all public domain (all files that begin with gui). The NeoDSConvert code is all public domain, except where the MAME/zlib licenses apply. The emulator code is free to use for non-commercial purposes. Contact me if these terms don't work for you.

    I would appreciate credit/thanks in all cases if you use parts of NeoDs, but it's not required. Also, I would discourage the release of modified versions. If you have useful changes, submit them to me, and I'll put them in the official version, with full credit going to you. If you must release your own version, I would encourage you to release the source. But if you really want to release your own closed source version, I won't stop you (just don't try to sell it).

    CREDITS
    * FinalDave, notaz for Cyclone
    * Reesy for DrZ80
    * Wintermute for devkitPro toolchain
    * chishm for libfat
    * MAME for parts of NeoDSConvert
    * Minizip used by NeoDSConvert
    * GnGeo, FinalBurnAlpha, MAME, MVSPSP for source code reference
    * Charles MacDonald for NeoGeo technical documentation
    * Alexander Stante for NeoGeo technical documentation
    * Brandon Long for a nice small sprintf implementation
    * Everyone who answers questions on the gbadev.org forums
    * Let me know if you think you should be here!

    HISTORY

    Project started Summer 2007

    v0.1.0 4/29/2008
    initial release

    Digg This Awesome Release for the DS Scene



    Download and Give Feedback & Compatability Reports Via Comments

  2. #2
    Won Hung Lo wraggster's Avatar
    Join Date
    Apr 2003
    Location
    Nottingham, England
    Age
    52
    Posts
    139,491
    Blog Entries
    3209
    Rep Power
    50

    Default

    if anyone can take some screens ill stick them on the newspost, what an amazing release, i like others thought it was a joke at first

  3. #3
    DCEmu Newbie
    Join Date
    Jan 2007
    Posts
    7
    Rep Power
    0

    Default

    tried metal slug x and metal slug 3 (had nothing smaller at hand)
    both did not work, fps went to 60, but the top screen stayed black;
    also, if i try to load another game after the first one didnt work, the DS hangs

  4. #4
    DCEmu Rookie
    Join Date
    Aug 2007
    Posts
    147
    Rep Power
    0

    Default

    I tried metal slug 1, didn't work, fatal fury didn't work either, then after a while the screen flashed colors and I got a fatal error that said Invalid PC:FF3FFF3F

    Ahh, people on gbadev.org said to use -bios1 when converting. I'll see if that works.
    http://forum.gbadev.org/viewtopic.php?t=15460
    Last edited by iofthestorm; April 29th, 2008 at 17:37.

  5. #5
    DCEmu Newbie TaN00Ki's Avatar
    Join Date
    Sep 2007
    Posts
    31
    Rep Power
    0

    Default

    Same here :/

  6. #6
    DCEmu Newbie
    Join Date
    Jun 2007
    Posts
    71
    Rep Power
    0

    Default

    Considering DS memory capabilities i would recomend trying the 1-9 meg games as anything above would be unrealisitic or go very slowly so try the first-gen games like Nam 1975.

  7. #7

    Default

    Tried with 1,5 Mb League Bowling and little over 2 Mb Crossed Swords. Nothing really happens.
    I haven't tested with MAME.
    But almost everyone gets it to work at here, so what's the problem?

  8. #8

    Default

    hmm. i need to know what the zipfile for the games need to be specific like what if mslug.zip was metalslug.zip but supposed to be mslug.zip?

  9. #9

    Default

    And now, after converting with -bios1, the neogeo.zip BIOS is working.
    Both League Bowling and Crossed Swords come up with weird green screen with some strange texts.

  10. #10
    DCEmu Regular
    Join Date
    Jul 2007
    Posts
    377
    Rep Power
    0

    Default

    Tried on my supercard SDHC and the same as described above! Tried both metal slug 1 & 2 with no luck and only the fps moving.....

    Perhaps we are all doing something wrong :-)

    paul

Page 1 of 19 1234511 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •