<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Xbox Emulator?</title>
<description> Just wondering if its possible. I don&amp;#039;t want to work on sumthing tht won&amp;#039;t work what so eva lol.</description><link>http://forum.wiibrew.org/read.php?17,2736,2736#msg-2736</link><lastBuildDate>Mon, 11 May 2026 00:31:25 +0200</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,55456#msg-55456</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,55456#msg-55456</link><description><![CDATA[ Aerinas, your last two posts were completely pointless, incorrect, and vague to an extent making somewhat irrelevant.<br /><br />Then again, the same could be said of this entire topic. Closed.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Homebrew Applications</category><pubDate>Mon, 28 Jun 2010 03:22:41 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,55434#msg-55434</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,55434#msg-55434</link><description><![CDATA[ oops, soory about the necro :(]]></description>
<dc:creator>Aerinas</dc:creator>
<category>Homebrew Applications</category><pubDate>Sat, 26 Jun 2010 19:23:02 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,55433#msg-55433</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,55433#msg-55433</link><description><![CDATA[ Emulation basically means a giant switch statement, interpreting the original code and translating it to something, in this case a wii, can understand. It has nothing to do with the hardware being the same, because the calls to that hardware are different on each. So if in the xbox game code is something like "DrawSprite(x,y,sprite);" it has to be read in your emulation program, and translated to the wii equivalent of that function. This process takes a lot of time per frame and its virtually impossible to do this from an xbox game to a wii. The process can however be greatly sped up by interpreting the opcodes (assembly stuff), but as iofthestrom said, if you have to ask if its possible, u cant do it, no offense ;)<br /><br />take a look at www.chip8.com and search wikipedia a bit for chip8, superchip8 (schip8) and mega-chip8 if you really want to start working on an emulator.]]></description>
<dc:creator>Aerinas</dc:creator>
<category>Homebrew Applications</category><pubDate>Sat, 26 Jun 2010 19:22:30 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2919#msg-2919</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2919#msg-2919</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>DanielHueho</strong><br />I know that the proper "emulation" is hard...<br />But let&#039;s pick a PS2 and a Wii, for example. Both of them uses PowerPC-based processors. And just for training the imagination, let&#039;s guess the video chips of both console use some common specification, a really small similarity, like some OpenGL-based architeture (I believe is cheaper to improve something than creating from zero...) . So you can <i>almost</i> consider they are really limited computers, with different operating systems.<br /><br />With all of this said, is somekind of software solution, like a compatibility layer, at least close to possible? Like WINE at Linux? I mean, there is a lot of difference on hardware, of course, but maybe combining the two concepts...<br /><br />Well, these are just some noobish thoughts.</div></blockquote>
If it were that easy than XBox emulation on PC would have been a piece of cake, since it&#039;s just a Celeron CPU with an nFore chipset and GeForce GPU. It&#039;s not that simple though, and PS2 doesn&#039;t use a PowerPC based processor anyway.]]></description>
<dc:creator>iofthestorm</dc:creator>
<category>Homebrew Applications</category><pubDate>Sun, 26 Oct 2008 08:11:57 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2914#msg-2914</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2914#msg-2914</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>DanielHueho</strong><br />I know that the proper "emulation" is hard...<br />But let&#039;s pick a PS2 and a Wii, for example. Both of them uses PowerPC-based processors. And just for training the imagination, let&#039;s guess the video chips of both console use some common specification, a really small similarity, like some OpenGL-based architeture (I believe is cheaper to improve something than creating from zero...) . So you can <i>almost</i> consider they are really limited computers, with different operating systems.<br /><br />With all of this said, is somekind of software solution, like a compatibility layer, at least close to possible? Like WINE at Linux? I mean, there is a lot of difference on hardware, of course, but maybe combining the two concepts...<br /><br />Well, these are just some noobish thoughts.</div></blockquote><br />The PS2 uses a MIPS R5900 actually. However, there is some difference between code that directly accesses the hardware (like games on consoles) and those which rely on the OS to handle all the hardware communication for it (thus making it possible to rewrite libraries and catch system calls). The CPU part of an emulator is only a part of the emulator; handling memory and sound and video are significant parts of emulation. So to answer your question, the equivalent to WINE in the console emulation world would be HLE as you can&#039;t really do much better than that (of course you can do HLE better or worse, but I don&#039;t think its possible to really improve upon the core idea).]]></description>
<dc:creator>caddr</dc:creator>
<category>Homebrew Applications</category><pubDate>Sun, 26 Oct 2008 02:12:27 +0100</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2913#msg-2913</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2913#msg-2913</link><description><![CDATA[ I know that the proper "emulation" is hard...<br />But let&#039;s pick a PS2 and a Wii, for example. Both of them uses PowerPC-based processors. And just for training the imagination, let&#039;s guess the video chips of both console use some common specification, a really small similarity, like some OpenGL-based architeture (I believe is cheaper to improve something than creating from zero...) . So you can <i>almost</i> consider they are really limited computers, with different operating systems.<br /><br />With all of this said, is somekind of software solution, like a compatibility layer, at least close to possible? Like WINE at Linux? I mean, there is a lot of difference on hardware, of course, but maybe combining the two concepts...<br /><br />Well, these are just some noobish thoughts.]]></description>
<dc:creator>DanielHueho</dc:creator>
<category>Homebrew Applications</category><pubDate>Sun, 26 Oct 2008 02:57:43 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2890#msg-2890</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2890#msg-2890</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>DrMario</strong><br />the online was much better and the graphics still a little better and I cannot see the wii ever supporting the online experience xbox did.</div></blockquote><br />Why? It&#039;s software based.]]></description>
<dc:creator>daniel_c_w</dc:creator>
<category>Homebrew Applications</category><pubDate>Sat, 25 Oct 2008 11:24:12 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2855#msg-2855</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2855#msg-2855</link><description><![CDATA[ Why an Xbox emulator? For the sheer challenge of programming it of course! Plus, its just cool ;)]]></description>
<dc:creator>Arikado</dc:creator>
<category>Homebrew Applications</category><pubDate>Fri, 24 Oct 2008 23:34:03 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2853#msg-2853</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2853#msg-2853</link><description><![CDATA[ Even though the xbox&#039;s specs were slightly less than the wii&#039;s, the online was much better and the graphics still a little better and I cannot see the wii ever supporting the online experience xbox did.<br />Also why would you even need an xbox emulator for the pc, most of the games are still available and have been ported to the PC for purchase (most are about $15-20 now)]]></description>
<dc:creator>DrMario</dc:creator>
<category>Homebrew Applications</category><pubDate>Fri, 24 Oct 2008 23:08:04 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2843#msg-2843</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2843#msg-2843</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Arikado</strong><br />Actually, Xbox games use DirectX code. I don&#039;t think an emulator is possible on Wii.</div></blockquote><br />I fail to see how this affects XBOX emulation?<br /><br />DirectX is jsut a software and hardware standard. A well documented one.<br />That actually makes it a lot easier.]]></description>
<dc:creator>daniel_c_w</dc:creator>
<category>Homebrew Applications</category><pubDate>Fri, 24 Oct 2008 18:57:01 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2837#msg-2837</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2837#msg-2837</link><description><![CDATA[ Actually, Xbox games use DirectX code. I don&#039;t think an emulator is possible on Wii.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Homebrew Applications</category><pubDate>Fri, 24 Oct 2008 16:57:18 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2817#msg-2817</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2817#msg-2817</link><description><![CDATA[ Honestly, if he&#039;s asking that question I don&#039;t think he&#039;s in a position to code an emulator. General rule of thumb is usually 10x the speed for good emulation to work. If you look at JenesisDS, which is an amazing Genesis emulator on the DS, you&#039;ll see that it requires a lot of highly optimized assembly code, and that&#039;s with possibly more than 10x the speed (depending on how you measure speed). In short, emulation is really tricky, and I don&#039;t think we&#039;ll see any of the last gen consoles being emulated on anything less than extremely fast gaming PCs for quite a while. For a comparison, FFX on a PS2 emulator ran slower on my computer than Crysis.]]></description>
<dc:creator>iofthestorm</dc:creator>
<category>Homebrew Applications</category><pubDate>Fri, 24 Oct 2008 07:58:03 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2750#msg-2750</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2750#msg-2750</link><description><![CDATA[ Even if it won&#039;t work perfectly, I&#039;d like to see you try to get something working.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 17:44:13 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2748#msg-2748</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2748#msg-2748</link><description><![CDATA[ look for the ps2 emulation thread. there you&#039;ll find a lot of (weell written) reasons to explain, why a real-performance (is that a word?) emulation of the xbox on the wii is impossible]]></description>
<dc:creator>daniel_c_w</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 14:34:35 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2747#msg-2747</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2747#msg-2747</link><description><![CDATA[ /\<br />/\<br />/\<br />Yeah, a lot of tech specs explain it all :P<br /><br />Xbox emulation is not possible mainly because Wii is just a bit more powerful than Xbox, and in emulation process a lot of performance is lost, specially when dealing about so different architetures (Intel x86 X PPC, just for start).<br />Anyway, Xbox emulation is still very imature even on PCs, so unless a revolution on the scene happens, you won&#039;t playing Halo outside the console. :)]]></description>
<dc:creator>DanielHueho</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 10:44:15 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2739#msg-2739</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2739#msg-2739</link><description><![CDATA[ thanks for the help!]]></description>
<dc:creator>surfing_at_12</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 01:25:52 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2737#msg-2737</guid>
<title>Re: Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2737#msg-2737</link><description><![CDATA[ Xbox Technical specifications<br /><br /><br />* CPU: 32-bit 733 MHz Custom Intel Coppermine-based processor in a Micro-PGA2 package. 180 nm process.[13]<br />o SSE floating point SIMD. Four single-precision floating point numbers per clock cycle.<br />o MMX integer SIMD.<br />o 133 MHz 64-bit GTL+ front side bus to GPU.<br />o 32 KB L1 cache. 128 KB on-die L2 "Advanced Transfer Cache".<br />* Shared memory subsystem<br />o 64 MB DDR SDRAM at 200 MHz; 6.4 GB/s<br />o Supplied by Hynix or Samsung depending on manufacture date and location.<br />* GPU and system chipset: 233 MHz "NV2A" ASIC. Co-developed by Microsoft and NVIDIA.<br />o Geometry engine: 115 million vertices/second, 125 million particles/second (peak)<br />o 4 pixel pipelines with 2 texture units each<br />o 932 megapixels/second (233 MHz x 4 pipelines), 1,864 megatexels/second (932 MP x 2 texture units) (peak)<br />+ Peak triangle performance (32pixel divided from the hell filrate): 29,125,000 32-pixel triangles/sec raw or w. 2 textures and lit.<br /># 485,416 triangles per frame at 60fps<br /># 970,833 triangles per frame at 92fps<br />o 4 textures per pass, texture compression, full scene anti-aliasing (NV Quincunx, supersampling, multisampling)<br />o Bilinear, trilinear, and anisotropic texture filtering<br />o Similar to the GeForce 3 and GeForce 4 PC GPUs.<br /><br />Wii Technical specifications<br /><br /><br /><br />Processors:<br /><br />* CPU: PowerPC-based "Broadway" processor, made with a 90 nm SOI CMOS process, reportedly† clocked at 729 MHz[78]<br />* GPU: ATI "Hollywood" GPU made with a 90 nm CMOS process,[79] reportedly† clocked at 243 MHz[78]<br /><br />Memory:<br /><br />* 88 MB main memory (24 MB "internal" 1T-SRAM integrated into graphics package, 64 MB "external" GDDR3 SDRAM)[80]<br />* 3 MB embedded GPU texture memory and framebuffer.<br /><br />Storage:<br /><br />* 512 MB built-in NAND flash memory<br />* Expanded storage via SD card memory (up to 2 GB)<br />* Nintendo GameCube Memory Card (required for GameCube game saves)<br /><br />IBM&#039;s Wii "Broadway" CPU<br />IBM&#039;s Wii "Broadway" CPU<br />ATI&#039;s Wii "Hollywood" GPU<br />ATI&#039;s Wii "Hollywood" GPU<br /><br />* Slot-loading disc drive compatible with 8 cm Nintendo GameCube Game Disc and 12 cm Wii Optical Disc<br />* Mask ROM by Macronix<br /><br />wikipedia knows all]]></description>
<dc:creator>DrLucky</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 01:20:38 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?17,2736,2736#msg-2736</guid>
<title>Xbox Emulator?</title><link>http://forum.wiibrew.org/read.php?17,2736,2736#msg-2736</link><description><![CDATA[ Just wondering if its possible. I don&#039;t want to work on sumthing tht won&#039;t work what so eva lol.]]></description>
<dc:creator>surfing_at_12</dc:creator>
<category>Homebrew Applications</category><pubDate>Wed, 22 Oct 2008 00:40:08 +0200</pubDate></item>
</channel>
</rss>