The following warnings occurred:
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.2.27 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/printthread.php(287) : eval()'d code 2 errorHandler->error_callback
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



EmuNewz Network
Can this emulator play PS1 games in the future? - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: Official Boards for Emunews Affiliated Emu Projects (https://www.emunewz.net/forum/forumdisplay.php?fid=47)
+--- Forum: Official RPCS3 Forum [archive] (https://www.emunewz.net/forum/forumdisplay.php?fid=172)
+---- Forum: RPCS3 - Support & Issue Reporting (https://www.emunewz.net/forum/forumdisplay.php?fid=163)
+---- Thread: Can this emulator play PS1 games in the future? (/showthread.php?tid=154806)

Pages: 1 2 3


RE: Can this emulator play ps1 games in the future ? - Hykem - 12-27-2013

(12-26-2013, 12:08 PM)hlide Wrote:
(12-25-2013, 08:23 PM)Hykem Wrote: ...

This: https://github.com/DHrpcs3/rpcs3/commit/0b35be32a43b575e16a43e50a385841dc0a58e1a

DH set up a separate thread to run ELF files based on the ARM architecture (ARM v7 from the Cortex-A9 MPCore). In the commits afterwards there were some basic interpreter and disassembler implementations and finally the integration with the ELF loader.
While this is not really useful now, I believe the purpose would be to run Vita games in a parallel thread so later we could emulate the connectivity between PS3 and Vita games.

from what I can read: he defines four types of CPU: MIPS, PPU, SPU and ARMv7. They sound more like an attempt to more genericity in the way to handle cpus. This emulator is going to do some low level emulation ?

Possibly, yes. We're still not sure about how the CPU emulation will occur inside the emulator, but it would be really interesting and a great proof of concept to implement.


RE: Can this emulator play ps1 games in the future ? - hlide - 01-01-2014

(12-27-2013, 10:06 PM)Hykem Wrote: Possibly, yes. We're still not sure about how the CPU emulation will occur inside the emulator, but it would be really interesting and a great proof of concept to implement.
by just looking some rpcs3 source, I noticed some references to "ARM9" and not to ARMv7. It is misleading for someone who knows about ARM family. ARM9 (ARMv4/5) is an older CPU which were used before the cortex family are released. ARMv7 is perfect as a designation rather than ARM9 for ARM[ Cortex A]9. Hopefully the presence of directory ARMv7 dispels the doubt I had when reading those "ARM9" in comments.


RE: Can this emulator play ps1 games in the future ? - BlackDaemon - 01-02-2014

hlide, DH just mistyped it, when added initial commit. Tongue


RE: Can this emulator play ps1 games in the future ? - Hykem - 01-08-2014

I believe DH renamed later all ARM9 (Cortex A9) references to the proper ARMv7 (ARM family). Looking at the current github code I can't find ARM9 anywhere anymore.