BetaArchive Logo
Total Current Archive Size: 4765.54GB in 15409 files
Navigation Home Screenshots Image Uploader Server Info FTP Servers Wiki Forum RSS Feed Rules Please Donate
UP: 8d, 11h, 25m | CPU: 16% | MEM: 5202MB of 12279MB used
{The community for beta collectors}

Post new topic Reply to topic  [ 65 posts ]  Go to page 1, 2, 3  Next
Author Message
 PostPost subject: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 6:23 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
this, this, this.

XEX example:

Code:
// default.xex table dumper
 // only works with the default.xex from the xbox360 emulator update package.
 // - th0mas, th0mas.sixbit.org [at] gmail.com
 
 #include <stdio.h>
 #include <string.h>
 
 #define TABLE_START 0x288
 
 struct table {
    unsigned int unknown[6];
 };
 
 unsigned int ByteSwap (unsigned int nInt)
 {
    union u {unsigned int vi; unsigned char c[sizeof(unsigned int)];};
    union v {unsigned int ni; unsigned char d[sizeof(unsigned int)];};
    union u un;
    union v vn;
    un.vi = nInt;
    vn.d[0]=un.c[3];
    vn.d[1]=un.c[2];
    vn.d[2]=un.c[1];
    vn.d[3]=un.c[0];
    return (vn.ni);
 }
 
 void printTable(struct table *t)
 {
    int i;
    for (i = 0; i < 6; i  ) {
       int j = ByteSwap(t->unknown[i]);
       printf("0x%08x ", j);
    }
    printf("\n");
 }
 
 int main(int argc, char **argv)
 {
    FILE *fp = fopen(argv[1], "rb");
    struct table tmp;
    int numEntries = 0;
    int i;
 
    fseek(fp, TABLE_START, SEEK_SET);
    fread(&numEntries, sizeof(unsigned int), 1, fp);
    numEntries = ByteSwap(numEntries);
    for (i = 0; i < numEntries; i  ) {
         fread(&tmp, sizeof(struct table), 1, fp);
         printTable(&tmp);
    }
 }
 


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 8:59 pm 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Thu Feb 24, 2011 1:51 pm

Posts
294

Location
/pt-BR

Favourite OS
6.1.7850.0
And... What's that?

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 9:01 pm 
Pro Beta Collector
Pro Beta Collector
Offline

Joined
Tue Jan 18, 2011 8:46 pm

Posts
417

Favourite OS
6.2.7955
*Face palm


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 9:03 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
marceloantonio1 wrote:
And... What's that?

Xbox360 emulation = Run PowerPC, Dasboard and XEX files under Windows.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 9:16 pm 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Thu Feb 24, 2011 1:51 pm

Posts
294

Location
/pt-BR

Favourite OS
6.1.7850.0
O.O
You're developing a Xbox 360 emulator???

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 9:18 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
marceloantonio1 wrote:
O.O
You're developing a Xbox 360 emulator???

Kenneth did. I just researched so far.
Dashboard, Xbox 360's OS, is based on NT. The kernel is based on NT, called xboxkrnl.exe. The architecture is PowerPC.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 10:12 pm 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Thu Feb 24, 2011 1:51 pm

Posts
294

Location
/pt-BR

Favourite OS
6.1.7850.0
Where can I find it?

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 10:15 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
marceloantonio1 wrote:
Where can I find it?

Kenneth did not release it.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 22, 2011 11:03 pm 
Guru Beta Collector
Guru Beta Collector
Online

Joined
Sat Aug 21, 2010 5:10 pm

Posts
915

Location
In front of my Toughbook

Favourite OS
UZI180
QEMU-usermode PPC may help

or the Cell BE emu from IBM.

I want to emulate common systems on PPC hardware faster than my G4.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 6:25 am 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
z180 wrote:
QEMU-usermode PPC may help

or the Cell BE emu from IBM.

I want to emulate common systems on PPC hardware faster than my G4.

You will need the full Dashboard for this.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 8:30 am 
Guru Beta Collector
Guru Beta Collector
User avatar
Offline

Joined
Wed Aug 10, 2011 10:08 am

Posts
801

Location
Behind you

Favourite OS
4.10.1998
cool i only need xbox 360 os...

heres xbox 360 in vmware:


_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 8:47 am 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
That could be fake, SURVEY.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 8:57 am 
Guru Beta Collector
Guru Beta Collector
User avatar
Offline

Joined
Wed Aug 10, 2011 10:08 am

Posts
801

Location
Behind you

Favourite OS
4.10.1998
Andrew Tapferke wrote:
That could be fake, SURVEY.


Yes i agree...
I wanted to emulate xbox360 3 years ago and i am happy someone did that... :)

Offtopic Comment
I think my first game will be naruto ultimate ninja storm :D

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 10:05 am 
Pro Beta Collector
Pro Beta Collector
User avatar
Offline

Joined
Mon May 09, 2011 7:13 pm

Posts
359

Location
Aosta Valley

Favourite OS
Windows XP Professional x64
yes, it's a fake.. I downloaded the file linked from the video (on youtube) and it's an unreadable iso of 1.5 megs...


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 12:35 pm 
Guru Beta Collector
Guru Beta Collector
User avatar
Offline

Joined
Wed Aug 10, 2011 10:08 am

Posts
801

Location
Behind you

Favourite OS
4.10.1998
He says it works only on internet...yeah for sure ;)

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 2:57 pm 
Pro Beta Collector
Pro Beta Collector
Offline

Joined
Tue Jan 18, 2011 8:46 pm

Posts
417

Favourite OS
6.2.7955
Wouldn't it be difficult to Emulate the Xbox 360? I'd also love to see if it's possible. There's barely a working PS2 emulator which is very laggy. So wouldn't the Xbox 360 emulator produce even more lag making it unplayable? Maybe it's a bit to early for the X360 to be emulated since computers these days are too slow.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 3:34 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Tue Dec 15, 2009 8:56 pm

Posts
2300

Location
England, UK

Favourite OS
NeXTSTEP 5.1/Windows NT
Beta wrote:
Wouldn't it be difficult to Emulate the Xbox 360? I'd also love to see if it's possible. There's barely a working PS2 emulator which is very laggy. So wouldn't the Xbox 360 emulator produce even more lag making it unplayable? Maybe it's a bit to early for the X360 to be emulated since computers these days are too slow.

Yes it would since trying to emulate PowerPC on x86 can be slow.
Offtopic Comment
So slow it can make your two GPUs melt!

_________________
#nttalk - the only sensible option for discussion of betas and more! Don't delay, join today at irc.alphachat.net #nttalk!


Top  Profile  WWW
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 4:18 pm 
Amateur Beta Collector
Amateur Beta Collector
User avatar
Offline

Joined
Thu Feb 24, 2011 1:51 pm

Posts
294

Location
/pt-BR

Favourite OS
6.1.7850.0
Beta wrote:
There's barely a working PS2 emulator which is very laggy.

PCSX2 isn't laggy here... Just a little. Depends on the computer where you're running it.

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 8:29 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
Image

stucks here


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 8:33 pm 
Guru Beta Collector
Guru Beta Collector
Online

Joined
Sat Aug 21, 2010 5:10 pm

Posts
915

Location
In front of my Toughbook

Favourite OS
UZI180
A bit out of XBox 360 topic
Complete PS2 on PS3 emulation isnt easy without expert knowledge and clever tricks.
The PS3 can emulate the PS2 if you reclaim the 2 stolen FPUs.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 9:52 pm 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Wed Aug 18, 2010 6:54 pm

Posts
1811

Location
Cambridgeshire, England, UK

Favourite OS
Arch Linux
soulman wrote:
Beta wrote:
Wouldn't it be difficult to Emulate the Xbox 360? I'd also love to see if it's possible. There's barely a working PS2 emulator which is very laggy. So wouldn't the Xbox 360 emulator produce even more lag making it unplayable? Maybe it's a bit to early for the X360 to be emulated since computers these days are too slow.

Yes it would since trying to emulate PowerPC on x86 can be slow.
Offtopic Comment
So slow it can make your two GPUs melt!

Offtopic Comment
IT DRIPS WITH SARCASM!


Uh, Beta, you're not saying that the Xbox 360 is faster than a high-end x86-compatible PC, are you? How many specifications do you want me to list?

_________________
Hi. I'm a Linux user, programmer, science enthusiast, and as of recently, a website administrator - I run a small forum on my Raspberry Pi. Click my profile to get a link to it.


Top  Profile  WWW
 PostPost subject: Re: Xbox 360 Emulation        Posted: Tue Aug 23, 2011 10:51 pm 
Pro Beta Collector
Pro Beta Collector
Offline

Joined
Tue Jan 18, 2011 8:46 pm

Posts
417

Favourite OS
6.2.7955
FoobyZeeky wrote:
soulman wrote:
Beta wrote:
Wouldn't it be difficult to Emulate the Xbox 360? I'd also love to see if it's possible. There's barely a working PS2 emulator which is very laggy. So wouldn't the Xbox 360 emulator produce even more lag making it unplayable? Maybe it's a bit to early for the X360 to be emulated since computers these days are too slow.

Yes it would since trying to emulate PowerPC on x86 can be slow.
Offtopic Comment
So slow it can make your two GPUs melt!

Offtopic Comment
IT DRIPS WITH SARCASM!


Uh, Beta, you're not saying that the Xbox 360 is faster than a high-end x86-compatible PC, are you? How many specifications do you want me to list?


What on Earth are you talking about?

Yes, you are correct about me not saying: "the Xbox 360 is faster than a high-end x86-compatible PC"

Where did you pull that one from?


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Wed Aug 24, 2011 7:49 am 
1337 Beta Collector
1337 Beta Collector
User avatar
Offline

Joined
Thu Apr 14, 2011 12:50 pm

Posts
1777
Beta wrote:
What on Earth are you talking about?

Yes, you are correct about me not saying: "the Xbox 360 is faster than a high-end x86-compatible PC"

Where did you pull that one from?

The new PCs from this year could be more powerfull than the 2005 3.2 GHz PowerPC Tri-Core Xenon Xbox 360.
Offtopic Comment
Stay ontopic.


Top  Profile
 PostPost subject: Re: Xbox 360 Emulation        Posted: Wed Aug 24, 2011 9:05 am 
Guru Beta Collector
Guru Beta Collector
User avatar
Offline

Joined
Wed Aug 10, 2011 10:08 am

Posts
801

Location
Behind you

Favourite OS
4.10.1998
Quote:
The new PCs from this year could be more powerfull than the 2005 3.2 GHz PowerPC Tri-Core Xenon Xbox 360.


Yes i agree we only need to write a code we dont need to worry it may be laggy like pcsx2 at it first release but at the time it will be better :D

_________________
Image


Top  Profile  YIM
 PostPost subject: Re: Xbox 360 Emulation        Posted: Mon Aug 29, 2011 2:24 pm 
Pro Beta Collector
Pro Beta Collector
User avatar
Offline

Joined
Mon May 09, 2011 7:13 pm

Posts
359

Location
Aosta Valley

Favourite OS
Windows XP Professional x64
MegaDragon998 wrote:
Quote:
The new PCs from this year could be more powerfull than the 2005 3.2 GHz PowerPC Tri-Core Xenon Xbox 360.


Yes i agree we only need to write a code we dont need to worry it may be laggy like pcsx2 at it first release but at the time it will be better :D


yes, but that's the hardest part :-) anyway... I read somwhere that early xbox360 software was developped on an emulator written for some apple computer (probably PowerPc) because at that time the console was still a prototype... anyone knows about that?? If I get the link of the source I'll post...


Top  Profile
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 65 posts ]  Go to page 1, 2, 3  Next




Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  

All views expressed in these forums are those of the author and do not necessarily represent the views of the BetaArchive site owner.

Powered by phpBB® Forum Software © phpBB Group

Copyright © 2006-2013

 

Sitemap | XML | RSS