<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title>
<description> Hello,

I know this might sound far fetched but I think it would be a good idea to have the port of PCSX2 to the Wii. I&amp;#039;m not that good of a coder and I hoped someone that knew how to code would be with me on this. Even if it would start out running 2 FPS, it would still be a start. I hope you conseder my request.

Adman

P.S. What languge is the Wii codes written in, if nobody agrees I will try... and fail! :)</description><link>http://forum.wiibrew.org/read.php?26,22355,22355#msg-22355</link><lastBuildDate>Thu, 18 Jun 2026 19:27:21 +0200</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,26542#msg-26542</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,26542#msg-26542</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Kammesennin</strong><br />Would it make a difference if the game were actually played off a disc instead of the SD card?</div></blockquote>
No.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Ideas, requests</category><pubDate>Sun, 26 Jul 2009 16:26:08 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,26468#msg-26468</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,26468#msg-26468</link><description><![CDATA[ Would it make a difference if the game were actually played off a disc instead of the SD card?]]></description>
<dc:creator>Kammesennin</dc:creator>
<category>Ideas, requests</category><pubDate>Sat, 25 Jul 2009 16:48:04 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,24338#msg-24338</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,24338#msg-24338</link><description><![CDATA[ So, I actually got it! Ported it (No not me, had a friend who knows C++)! Not relised to public! Runs at .0235 FPS! lol<br />And PCSX2 DOES need 2GIG because it needs (about) 10X more Specs than normal PS2.]]></description>
<dc:creator>Adman</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 10 Jul 2009 02:58:29 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23524#msg-23524</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23524#msg-23524</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Theoretically, if we wrote a program that was able to read the "emulator" program off the sd, and work with "virtual memory" for the "emulator" on the SD, it would be possible... albeit slow as hell... Basically we wouldn&#039;t port the PS2 emulator for the wii, we would port it into a sort of scripting language, so that we can only load bits of the emulator into memory at a time, and we have better managment of memory of the emulator/PS2 by making it all virtual.</div></blockquote><br />What is sure i sthe Wii programs can only run from RAM. You mean having your emulator loading modules from SD into the Wii RAM then releave execution to them in order to save some memory ?<br />I don&#039;t think this would work because all PCSX2 objects must be very tied together and you would have to recode everything with memory partitionning and stuff like that. In any case, I&#039;m pretty sure this wouldn&#039;t change much since the 512MB requirement is probably not due to the emulation code size but the size of data & buffers used by the emulator. Again, this probably could be dramatically reduced but isn&#039;t worth the effort.<br /><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong></strong><br />Also, my thing isn&#039;t that biased if you look at it. Even if the PS2 only requires 40MB of ram, using that on the card rather than the ram is still going to make it 1048 times slower. Also, I am not sure how the emulator works with stdio, but we would need to store mostly all the data from the file that needs to be interpreted on the SD, making it much slower, if my guess of how it works is correct. (My guess is that the data in a rom isn&#039;t like a set of commands you can just do, but rather it creates a structure and defines all these commands, then the header of the rom points to a specific method and says "start here" so you COULD navigate through the CD in a kind of interpreted way... I dunno, I have never made an emulator before so~)</div></blockquote><br />The only "ROM" is the PS2 BIOS , all other data are read as files from the DVD.<br />BIOS ROM generally contains the main program (and some data) that is executed by the PS2 CPU on startup. This program has routines to load files from the DVD. Files on DVD can be either other subprograms or various data holders (arrays, compressed textures, sound samples, level maps, etc).Those files are loaded into the PS2 internal memory when required.<br /><br />Now, an emulator work exactly the same: it would read files either from DVD or any storage device so SD speed is not the problem as long as it can store the BIOS ROM and the PS2 internal RAMs in its own RAM memory.]]></description>
<dc:creator>ekeeke</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 03 Jul 2009 11:51:35 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23366#msg-23366</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23366#msg-23366</link><description><![CDATA[ I know it was biased, I didn&#039;t know the PS2 or Emulator specs, so I just made allsorts of wild assumptions...<br /><br />Theoretically, if we wrote a program that was able to read the "emulator" program off the sd, and work with "virtual memory" for the "emulator" on the SD, it would be possible... albeit slow as hell... Basically we wouldn&#039;t port the PS2 emulator for the wii, we would port it into a sort of scripting language, so that we can only load bits of the emulator into memory at a time, and we have better managment of memory of the emulator/PS2 by making it all virtual.<br /><br />It is possible. But no one is going to do it. Thus, impossible :P.<br /><br />Also, my thing isn&#039;t that biased if you look at it. Even if the PS2 only requires 40MB of ram, using that on the card rather than the ram is still going to make it 1048 times slower. Also, I am not sure how the emulator works with stdio, but we would need to store mostly all the data from the file that needs to be interpreted on the SD, making it much slower, if my guess of how it works is correct. (My guess is that the data in a rom isn&#039;t like a set of commands you can just do, but rather it creates a structure and defines all these commands, then the header of the rom points to a specific method and says "start here" so you COULD navigate through the CD in a kind of interpreted way... I dunno, I have never made an emulator before so~)]]></description>
<dc:creator>CloneDeath</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 02 Jul 2009 22:03:20 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23301#msg-23301</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23301#msg-23301</link><description><![CDATA[ It probably doesn&#039;t, and that&#039;s why the above calculations are biased and don&#039;t make much sense :-)<br /><br />If you look at the <a href="http://www.pcvsconsole.com/features/consoles/playstation2.php" rel="nofollow">specifications</a>, RAM requirement are at least (probably more) ~40 MB to handle PS2 internal "physical" memory (Main RAM, GPU RAM, hardware registers, etc) and then PCSX2 emulator requirement (to store code, variables, allocated objects, buffers, etc) seems to be at least 512MB (the more you have and the more things that can be buffered and speedup).<br /><br />I don&#039;t know, maybe someone very talented could make the emulator fits in the remaining Wii memory but we will probably never know because, as above PS2 specifications show, there is no way the Wii could handle PS2 emulation: this is not even a matter of SDCARD access speed, it&#039;s a matter of the Wii CPU being too slow and the PS2 architecture being relatively too complex and avanced.<br /><br />A good <a href="http://forums.pcsx2.net/thread-2330.html" rel="nofollow">read</a>.]]></description>
<dc:creator>ekeeke</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 02 Jul 2009 10:33:51 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23282#msg-23282</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23282#msg-23282</link><description><![CDATA[ Why would an PS2 emulator even need 2 GIGS of Ram?]]></description>
<dc:creator>daniel_c_w</dc:creator>
<category>Ideas, requests</category><pubDate>Thu, 02 Jul 2009 05:40:53 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23231#msg-23231</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23231#msg-23231</link><description><![CDATA[ 64MB/2048<br />1/32<br /><br />800mhz/2800<br />1/3<br /><br /><br />=<br /><br />1/96<br /><br />So it has about 1/96 of the power. I know that my calculations are aproximate, but it makes sense. First off, if we want to run the game, we are going to need room for the rom, the emulator, and the game to run in memory. Wii only has 64MB so we have to use "virtual memory" via an SD card. Standard SD is too small to hold all this (although my guess on rom sizes might be off, I don&#039;t pirate :P) so lets just say we use a 4GB microSD card. Now, if you know about how they work, they are able to have these huge capacities and in return go REALLY slow, so in this case, size of memory does compute to processing speed (although, not in a linear way)<br /><br />When I get home, I will test file writing to a microSD of 4gig if need be, just to prove the point and to get more accurate metaprocessing FPS for you, but seeing as how it is about a third of the speed, multiply that by how slow it will take to access virtual memory, and we get 1/96<br /><br />If we didn&#039;t have memory issues, then the game should run at about 15FPS, more or less.<br /><br />Now, using the acess times from this place:<br /><br />[<a href="http://forums.maxconsole.net/archive/index.php/t-47828.html" rel="nofollow">forums.maxconsole.net</a>]<br /><br />and assuming we have an access time for ram of about .000001 seconds per byte (1,000 nanoseconds, it is hard to find an exact speed, but according to the internet, that is abominationally slow).<br /><br />so a microSD of 4 gig takes &lt; 3MB/Sec or 0.001048576 seconds per byte. (Edit: To clarify, the website only shows standard SD speeds, and I know that MicroSD is MUCH slower than that, so we say it is less than or equal to a standard SD card. Thus, even if we could run it on a normal SD rather than a microSD, the end numbers is a maximum for both)<br /><br /><b>The MicroSD is 1048 times slower than ram. (speed of MicroSD/speed of Ram, just shift the decimal place :P)</b><br /><br />1FPS is impossible. My initial estimation was WAY too high. It should be much less than 1 FPS.<br /><br />Now, these are just aproximations. Your Wii is going to be dedicated emulator and the PC has multiple things running, so the processor may actually be fast enough to get 45FPS easily, but it is the memory that causes it to be aproximately .0429 FPS (about 1 frame every 25 seconds) (I got this from 45/1048 = PC FPS / MicroSD speed vs Ram speed)<br /><br />It will probobly be much slower, based on how I rounded.]]></description>
<dc:creator>CloneDeath</dc:creator>
<category>Ideas, requests</category><pubDate>Wed, 01 Jul 2009 20:22:05 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23219#msg-23219</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23219#msg-23219</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>CloneDeath</strong><br />Too high, try 1 fps (max), and it wouldn&#039;t be as much as a start as it would be an end. :P</div></blockquote><br />How do you know it wont run in 2 fps? May I take part of your calculations?]]></description>
<dc:creator>profetylen</dc:creator>
<category>Ideas, requests</category><pubDate>Wed, 01 Jul 2009 19:30:13 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23165#msg-23165</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23165#msg-23165</link><description><![CDATA[ well, THEORETICALLY it could work.<br /><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong>Adman</strong><br />Even if it would start out running 2 FPS, it would still be a start.</div></blockquote><br />Too high, try 1 fps (max), and it wouldn&#039;t be as much as a start as it would be an end. :P]]></description>
<dc:creator>CloneDeath</dc:creator>
<category>Ideas, requests</category><pubDate>Wed, 01 Jul 2009 14:30:23 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23119#msg-23119</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23119#msg-23119</link><description><![CDATA[ The Wii is about 750-800 MHz, 64MB RAM. Good luck!]]></description>
<dc:creator>alainvey</dc:creator>
<category>Ideas, requests</category><pubDate>Wed, 01 Jul 2009 02:05:51 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23014#msg-23014</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23014#msg-23014</link><description><![CDATA[ I am like 99% sure the wii has nowhere near 2gig ram.<br /><br />But yeah, I could totally see nintendo deciding to have more ram than flash memory (Not sarcasm, just not a nintendo fan. There is too much disappointment with being a nintendo fan -_-... +cries+)]]></description>
<dc:creator>CloneDeath</dc:creator>
<category>Ideas, requests</category><pubDate>Tue, 30 Jun 2009 19:21:45 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,23012#msg-23012</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,23012#msg-23012</link><description><![CDATA[ I also want to know what the wii specs are... The PCSX2 can run most games fairly on a PC with:<br /><br />Dual Core @ 2.8 GHz<br />2 Gigabytes of RAM<br />Graphics Card of 256 Megabytes or more (Good Quality)(Min. Nividia 8700)<br /><br />These specs can run most games @ 40-50 FPS. If Wii has equivallent or more, it could be doable.]]></description>
<dc:creator>Adman</dc:creator>
<category>Ideas, requests</category><pubDate>Tue, 30 Jun 2009 19:17:12 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,22400#msg-22400</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,22400#msg-22400</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Adman</strong><br />P.S. What languge is the Wii codes written in, if nobody agrees I will try... and fail! :)</div></blockquote><br />The homebrew libraries are written in and for C/C++.<br />But of course you can use any lanfguage you want, as long as you have a toolchain that compiles it for a powerpc-gecko]]></description>
<dc:creator>daniel_c_w</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 26 Jun 2009 23:07:47 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,22362#msg-22362</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,22362#msg-22362</link><description><![CDATA[ [<a href="http://forum.wiibrew.org/read.php?14,1807" rel="nofollow">forum.wiibrew.org</a>]<br /><br />Most people code for the Wii with C/C++]]></description>
<dc:creator>Arikado</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 26 Jun 2009 21:44:51 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,22357#msg-22357</guid>
<title>Re: PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,22357#msg-22357</link><description><![CDATA[ there&#039;s another thread on this if you search around here.]]></description>
<dc:creator>scanff</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 26 Jun 2009 21:30:48 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?26,22355,22355#msg-22355</guid>
<title>PCSX2 Port (I know the wii might not have the required specs. but its worth a try... right?)</title><link>http://forum.wiibrew.org/read.php?26,22355,22355#msg-22355</link><description><![CDATA[ Hello,<br /><br />I know this might sound far fetched but I think it would be a good idea to have the port of PCSX2 to the Wii. I&#039;m not that good of a coder and I hoped someone that knew how to code would be with me on this. Even if it would start out running 2 FPS, it would still be a start. I hope you conseder my request.<br /><br />Adman<br /><br />P.S. What languge is the Wii codes written in, if nobody agrees I will try... and fail! :)]]></description>
<dc:creator>Adman</dc:creator>
<category>Ideas, requests</category><pubDate>Fri, 26 Jun 2009 21:24:08 +0200</pubDate></item>
</channel>
</rss>