• DCEmu Homebrew Emulation & Theme Park News

    The DCEmu the Homebrew Gaming and Theme Park Network is your best site to find Hacking, Emulation, Homebrew and Theme Park News and also Beers Wines and Spirit Reviews and Finally Marvel Cinematic Universe News. If you would like us to do reviews or wish to advertise/write/post articles in any way at DCEmu then use our Contact Page for more information. DCEMU Gaming is mainly about video games -

    If you are searching for a no deposit bonus, then casino-bonus.com/uk has an excellent list of UK casino sites with sorting functionality. For new online casinos. Visit New Casino and learn how to find the best options for UK players. Good luck! - Explore the possibilities with non UK casinos not on Gamstop at BestUK.Casino or read more about the best non UK sites at NewsBTC.
  • DCEmu Featured News Articles

    by Published on September 28th, 2009 21:42



    Hi All,

    Atari800 is an emulator for the 800, 800XL, 130XE and 5200 models of the Atari personal computer.
    It can be used on console, FrameBuffer or X11.
    See http://atari800.sourceforge.net/ for further informations.

    Wiz-ATARI is a port of the PSP version to GP2X Wiz.

    Many new features have been added such as cheat codes and save states with thumbnail images etc ...

    How to use it ? Everything is in the README.txt file.

    Sources are included, and this package is under the GNU public license,
    read COPYING.txt file for more information about it.

    http://zx81.zx81.free.fr/

    Enjoy,

    Zx. ...
    by Published on September 28th, 2009 21:07

    Hey everyone. This is my first post here. Some of you may know me from the GameCube homebrew scene. Anyway, this post is not about the Wii or the DSi. It’s more of a vintage hardware hacking post.

    The Nintendo Gameboy Color was released by Nintendo to the public in 1998. Since then no one had dumped its internal boot ROM (the first code that runs when you turn on or reset the system). After spending a few days glitching the GBC CPU voltage supply and clock input, I finally managed to get it to spew out the contents of this initial boot ROM.

    Read all about it (as well as download the binary and an almost complete commented disassembly) on my website here: http://www.fpgb.org. The website is mainly a blog about my FPGABoy project, which is an attempt to design a complete clone of the original Gameboy hardware on an FPGA.

    Or if you are too lazy to click on the GBC Boot ROM link on the right of the FPGABoy blog page, you can directly hop to it here.

    I also dumped the Super Gameboy’s boot ROM about a week or so back, which you can also read about (as well as download) here.

    I hope it’s at least mildly interesting news albeit being related to an ancient console.

    Costis

    http://hackmii.com/2009/09/gameboy-c...fter-10-years/ ...
    by Published on September 28th, 2009 21:01

    News via http://emu-russia.net/en/

    The best Sega Mega Drive/32X/CD/Master System/Game Gear emulator for Windows has been updated. Changes:
    - Seperate SMS controls (finally) allowing for support of SMS Paddles and Light Phasers. The reason I haven't done this before is down to the UI. I don't much like the current solution, either, but it's functional for now.
    - State Slots now report if they are already in use, by request.
    - Allow changing state slots, and saving states (but not loading) during Netplay. I'm not sure what use this is, but it was often requested.
    - Added support for a couple of Custom SRAM games that were recently discovered.
    - Windows Live Messenger status updates. (thanks Gerrie!)
    - Many small behind the scenes bugfixes that you probably won't notice, and I've mostly forgotten...

    http://www.eidolons-inn.net/tiki-index.php?page=Kega ...
    by Published on September 28th, 2009 20:55

    News from booboo:

    First and foremost: sorry for being so hard to get in touch with lately. We've been in defcon 1 for the last week at work preparing a demo for the current project (OMAP3530 based) which is crucial to the future of the company, so I had reduced my daily routine to sleep-eat-work-sleep. My inbox is exploding.

    Sweetlimre commented on having a writable home directory (see interview). If I recall correctly, I wrote about this already. The main application executed by busybox's init process is responsible for this. At this stage in the boot process no HOME environment variable has been set. I could easily modify busybox's init to set it to "/usr/local/home", but I felt it's better to stick to a vanilla busybox as much as possible. Oh, wait: maybe if (as I recommended) the main menu application is using exec() to launch emus/apps things are not so simple. Need some input from devs here, and if the only solution is to modify busybox's init, so be it.

    Regarding the modified buildroot I'm using, as he requested it's now available for download at the google code project page. I hadn't published it before just because I could not find time to fix all the dirty hacks I used, which resulted in a partially manual build. I'll be glad to add anything developers suggest. Just send me the buildroot recipe. I would really like to stay away from OpenEmbedded. I have to use it for the OMAP3530 and IMHO it is way overengineered.

    Some good news on the Ingenic front: the Qi-Hardware guys have managed to get Ingenic to release their kernel development trees DAILY. This means immediate access to any useful fix they make. There are 2.6.24.3 and 2.6.27 branches, and I'm working on porting the A320 support code to the later, mostly to see if it helps somehow with the USB/DMA and SD/MMC standing bugs. Note that in the case of embedded devices like the A320 I don't think that newer kernel is necessarily better.

    Regarding the Gemei x760+ things are going slower than expected. I dumped the hardware initialization .DL from NAND flash and disassembled it, only to discover I was looking in the wrong place. Let me explain:

    When the JZ4740 boots a piece of code called the IPL (Initial Program Loader) is executed from ROM. Depending on the state of some pins this code either enters USB boot mode or boots from NOR or NAND flash. In the A320 we can only choose to enter USB boot mode or boot from NAND. The IPL only supports 512 and 2048 page size NAND, so despite the fact that the NAND chip in the A320 has a 4096 page size it is handled by the IPL as if it was 2048.

    The IPL reads the four first pages (8KB total) of NAND into the instruction cache (because the SDRAM is not yet available). This is called the SPL (secondary program loader) and its purpose is to do a basic hardware initialization, most notably making the SDRAM available, and load the system loader from NAND. The A320 SPL also handles the NAND as if it was 2048.

    In the original firmware the SDL is stored in the first 8KB of the first NAND block (0x00000-0x3FFFF). It loads the system loader from 0x50000-0xBFFFF. Before loading the operating system the A320 system loader does something interesting: it loads from 0x40000-0x4FFFF a piece of code that I call the hardware initialization DL. It is a dynamic linked object code chunk that does board-specific hardware initialization: GPIO, LCD, etc. This is the interesting stuff. In both the older and newer A320 the LCD initialization code was reverse engineered from this DL.

    However, the x760+ LCD initialization seems to be mostly done by the system loader itself. It stil loads the DL and uses it for some GPIO initialization that is also related to the LCD controller, but not much more. The DL does contain a large LCD register initialization code routine, but it is unused (and I lost a lot of time reverse engineering it).

    Since the system loader code is much larger (~260KB) than the DL code (~10KB), it's gonna take some time to reverse engineer the LCD handling code. Note also that I had already reverse engineered the A320 DL code and that helped a lot, but the system loader is unexplored territory.

    http://www.dingux.com/2009/09/progre...buildroot.html ...
    by Published on September 28th, 2009 20:46

    Sony announced a March release for Gran Turismo 5 at Tokyo Game Show last week, a release window that was specifically targeted for the Japanese market. However, don't expect a surprise 2009 release (sorry Amazon!). "I don't think it's going to be that different for US and Europe," Polyphony Digital head Kazunori Yamauchi told journalists at a GT5 event last week. "Marketing is still discussing their issues," which is the reason why a specific date hasn't been pegged yet for those markets.

    Yamauchi then went on to list a befuddling list of features that should ship on the disc next year. GT Mode will return with all the features of classic GT games, like the garage, the car dealer, the tuning shop, and license tests. However, more exciting are the new features, such as a brand-new physics model that includes damage and deformation for all "normal" cars. Hybrid and electric cars are going to be added to the livery, too, with over 950 cars available on the disc. There will also be over 70 variations of over 20 locations to race through.

    The online features have been expanded to include both text and voice chat, with support for lobbies and private rooms. There will be online photo albums and online replay albums as well; with the ability to export replays to YouTube. Gran Turismo TV, the video service introduced in Gran Turismo 5 Prologue will also be expanded with a brand new UI, progressive downloading (so you can watch the video content while it downloads), and the ability to export these videos to PSP. While this may seem like the kitchen sink of features, Yamauchi teased, "we have much more planned."

    Considering it's been five years since the release of Gran Turismo 4 on PS2, fans of the franchise are expecting only the best, if not more.

    http://www.joystiq.com/2009/09/28/gr...ly-early-2010/ ...
    by Published on September 28th, 2009 18:05

    The DSI has been out a while now and a few features like facebook and better web browser give it a plus over the DS lite and the DSI Ware Store is a small thumbs up too, amazingly the homebrew scene came up with the best release so far and thats a quality GBA Emulator for the DSI (via Iplayer), which brings me to the question, How Many of you would buy a DSI out of those who so far have refrained ?

    replies via comments ...
    by Published on September 28th, 2009 18:01

    Just interested if any of you are getting a PSPGo and indeed whats selling it to you.

    If you arent interested and are thinking of opting to go with say a PSP3000 for a new console, what would make you change your mind and buy a PSPgo.

    Im sure if there was a Custom Firmware for the PSPgo that would be a big thumps up to selling some PSPGos in the Homebrew Community

    So Anyone Getting a PSP Go ?

    replies via comments ...
    by Published on September 28th, 2009 17:57

    The PS3 much like the PS2 when released brought a new video media to the world, Blue Ray for PS3 and DVD for PS2, both consoles at release date were powerful for their time, the PS2 had backwards compatability with PS1, the PS3 did have the same with PS2 but after a few revisions lost that.

    Widespread piracy was rampant on the PS2 and indeed the PS1 but that didnt cause the consoles to suffer, infact it most likely helped both become the mega sellers they are today.

    So why isnt the PS3 the Mega Seller, what did Sony do and are still doing wrong ?

    your replies via comments ...
    by Published on September 28th, 2009 17:49

    Newly released today:



    features
    The powerful, dual-motor force feedback mechanism with helical gearing smoothly and accurately simulates traction loss, weight shift, and road feel, with exceptionally quiet steering action.
    Six-speed shifter with push-down reverse gear allows you to quickly choose exactly the right gear.
    RPM/shift indicator LEDs integrate with racing game software to indicate when the user should shift gears.
    Realistic 11-Inch wheel with leather-wrapped rim provides a more comfortable, true-to-life racing experience for hours on end.
    Steel gas, brake, and clutch pedals deliver precise throttle, braking, and shifting control for heightened realism.

    description
    Whether sliding sideways around a gravely curve, or screaming through the streets of Monaco, with the Logitech G27 Racing Wheel, the world's greatest circuits feel closer than ever. Designed to deliver the definitive sim racing experience for the PC and PLAYSTATION3, the Logitech G27 Racing Wheel features a powerful, dual-motor force feedback mechanism that smoothly and accurately simulates traction loss, weight shift, and road feel; plus a an exceptionally quiet helical gear system that virtually eliminates steering noise. And then there are the six-speed shifter with push-down reverse gear; RPM/shift indicator LEDs; 11-inch leather-wrapped rim; steel gas, brake, and clutch pedals; and 16 programmable buttons plus D-pad. All of which add up to a level of performance and realism that you might not have thought possible.

    http://www.play-asia.com/SOap-23-83-...j-70-3kn0.html ...
    by Published on September 28th, 2009 17:43

    You know that UMD-to-PSP Go conversion program? Ain't gonna happen. The "good will" program that would have provided free (or at least heavily discounted) digital copies of games already purchased on UMD discs has been scrapped. A spokesman for SCEA said, "We were evaluating a UMD conversion program, but due to legal and technical reasons we will not be offering the program at this time." Adding insult to injury, the PSP Go Rewards program offering 3 free games to European UMD owners will not be offered in the US. That's the bad news. The not so bad news is that 16,000 pieces of digital content will be available for the US PSP Go launch on October 1st. These include 225 downloadable games (full PSP titles, PSN exclusives, UMD legacy titles, and Minis), 2,300 films, and 13,300 television episodes. Still, not quite the "at least 300" digital games we were expecting. So US PSP owners, still planning to "upgrade?"

    http://www.engadget.com/2009/09/28/s...rogram-offers/ ...
  • Search DCEmu

  • Advert 3