similar to: XBOX as and * Dedicated Server

Displaying 20 results from an estimated 2000 matches similar to: "XBOX as and * Dedicated Server"

2003 Oct 01
7
eBay Sip Phone Scam.
Some guy on eBay is trying to sell the Grandstream Budgetone Phone 101 as the 102D. And to make matters worse he starts the bid at $90.00 Beware. http://search.ebay.com/search/search.dll?query=sip+phone&ht=1&sosortproperty=1&from=R10&BasicSearch= -- Costas Menico Meezon Software Corp 201-224-8111 costas@meezon.com --
2008 Apr 20
2
Xbox
> The Xbox is based on commodity PC hardware and runs a stripped-down version of the Windows 2000 kernel using APIs based largely on DirectX 8.1. however, it also incorporates changes optimized for gaming and multimedia uses... Is there any chance that wine can be made to run xbox games? There is alot of hardware optimisation so perhaps this is impossible, unless your running wine on an xbox,
2002 Oct 14
1
Xbox Connection
Hi all wondered if you could help me with this little problem I have. I''m wanting to connect my Xbox to the net for gaming and have the following set-up 3 interfaces on my Linux box eth0 :net (connected to my cable modem) eth1 :me (IP range 192.168.3.0) eth2 :loc (IP range 192.168.0.0) My Xbox is connected through a hub to eth2 I need to forward TCP and UDP packets to my PC which is
2003 Feb 23
3
Can't login from Xbox - No session setup?
Hello. I'm having problems connecting to a Samba 2.2.7 share from my Xbox with Xbox Media Player (XBMP) 2.3. In the config file of XBMP, I added an entry which should make XBMP connect to a SMB share on my Samba server. I think, I've got everything setup correctly - according to the docs. However, when I try to connect, I don't see anything on the Xbox. After having set log level
2008 Jan 30
1
Xbox Support
Hi I'm sure I remember reading (possibly on the TiNDC) that Xbox support was planned for the Nouveau driver I was just wondering how this was going. I've got my Xbox out again and would be happy to test code to get 3D working on it Cheers Mike
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
I'm slightly confused here, just to be clear: you're planning to go ObjC -> LLVM (via Clang or whatever) -> C, then use the 360 SDK compiler to build that, right? If that's the case, I think it'd be a better option than to use LLVM to directly generate XEXs, and you won't give the TCR guys fits (I checked the BAS TCRs, none of them say you can't do that, but the
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Le 27 mai 2010 à 08:48, Kevin Wooten a écrit : > This is certainly an option... but keeping up an LLVM backend for the 360 seems like a bit much work. Using Clang's rewriter requires no real low-level maintenance, just creating and maintaining a C library for support functions emitted by the compiler (e.g. objc_msgSend). > The clang rewriter is not the same than LLVM C backend.
2010 May 27
2
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
This is certainly an option... but keeping up an LLVM backend for the 360 seems like a bit much work. Using Clang's rewriter requires no real low-level maintenance, just creating and maintaining a C library for support functions emitted by the compiler (e.g. objc_msgSend). It seems to create a backend for LLVM targeting the 360 I wouldn't need to create something that outputs XEX's
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
llvm can output C code, but that target has bitrotted severely over the last few months and nobody seems to be interested in fixing it. You may need to do some work there. Alternatively you could implement the PPC ABI that you need. There are several examples of supporting multiple ABIs on the same hardware, x86 being the most obvious. A lot of simple stuff will probably Just Work with the
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Please create a thread on DevNet to discuss this further. Alex On May 27, 2010, at 9:26 AM, Kevin Wooten wrote: > By linux derivative I meant that it borrows the linux GCC ABI... and > it does. You can compile with an off the shelf GCC cross compiler > and link the resultant object files ones compiled with the PS3 > provided version. We have done it. > > Also, as both
2010 May 27
4
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
We are looking at using Objective-C/C++ in a new game engine.  Objective C's duality of being both very dynamic and very "C" gives us exactly what we need to make the SDK and engineering of games simpler. This means that we will need a way to compile it on all platforms our games will target.  Currently the major platforms we are concerned with include... PC, Mac, XBox 360, PS3,
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
PS3 is not "a Linux derivative." The compilers supplied by SCE for PS3 game development are highly customized and support a customized ABI that will take some time to adjust LLVM and Clang to support. You'd likely also run afoul of a TRC or two, similar to the problems you'll face with Microsoft TCRs mentioned earlier. Alex On May 27, 2010, at 12:15 AM, Kevin Wooten
2010 May 27
1
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Why? I think the discussion belongs here, and the topic doesn't seem to include proprietary information - a lot of 360 info has been made public through MS material. Other info can be discussed without much disclosure (we can refer to TCRs by three-letter category and number, etc). - Sherief On May 27, 2010, at 1:15 PM, Alex Rosenberg wrote: > Please create a thread on DevNet to discuss
2011 Feb 15
2
Bioshock and xbox 360 wired controller?
Has anyone been able to get their wired xbox 360 controller to work with the mac version of bioshock? There's an option in the controller preferences, but it refuses to be clickable no matter how I connect my pc 360 controller to my mac. I even downloaded the tattleboogie drivers, but it didn't recognize the controller in game. Has anyone made this work? juego de dora
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Le 27 mai 2010 à 09:15, Kevin Wooten a écrit : > Implementing the backend (or editing the current PPC backend as needed) is a definite option. This seems to be the real question... which is easier... maintaining the PPC backend or maintaining the rewriter. Currently (in admittedly trivial tests) I have gotten the rewriter to work and output C code. There are some outstanding issues to do
2010 May 27
0
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Kevin, there're some unwritten rules on the 360 that seem to interfere with code generation - pointer load-stores seem to require zeroing the most significant 32 bits, for example - that was one issue that I ran into a while ago while fooling around with code generation on the 360 (and don't blame me if I'm slightly off the mark, it was quite a while ago). I didn't seem to find it
2005 May 16
5
xbox asterisk?
http://www.pbs.org/cringely/pulpit/pulpit20050512.html interesting comment this week about the Xbox - any intelligent thoughts here? I know the price point puts it above most users Asterisk outlay (I run mine on a $100 P3 -800) But interesting to see what happens if people start running video conferencing etc on their home asterisk servers, and lets face it where else can you buy this
2010 May 27
5
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
Implementing the backend (or editing the current PPC backend as needed) is a definite option. This seems to be the real question... which is easier... maintaining the PPC backend or maintaining the rewriter. Currently (in admittedly trivial tests) I have gotten the rewriter to work and output C code. There are some outstanding issues to do with linking and accessing the reflection information
2010 May 27
4
[LLVMdev] Using LLVM to compile Objective-C on an Xbox 360
By linux derivative I meant that it borrows the linux GCC ABI... and it does. You can compile with an off the shelf GCC cross compiler and link the resultant object files ones compiled with the PS3 provided version. We have done it. Also, as both an XBox 360 and PS3 developer, there seems to me to be nothing in the TCRs/TRCs that preclude us from using a different compiler. There are rules
2005 Feb 06
0
no session setup connecting from xbox
Hi All, I am attempting to connect to a Samba server (version 3.0.10) from my xbox running MAMEoX, a port of MAME to run on the xbox. When the program attempts to connect, Samba terminates the connection. Looking at the host log, the relevant line is: smbd/service.c:make_connection(735) make_connection: refusing to connect with no session setup I have successfully connected from MAMEoX