Sponsored Content
The Lounge What is on Your Mind? Your favourite computer games.... Post 302793659 by gbudny on Saturday 13th of April 2013 12:09:44 AM
Old 04-13-2013
I think you can play in your favorite games on many exotic platforms, which is more fun:

Loki Entertainment Software

Civilization: Call to Power (PowerPC)
Civilization: Call to Power (Alpha)
Civilization: Call to Power (Sparc)
Heroes of Might and Magic III (PowerPC)
Eric's Ultimate Solitaire (PowerPC)
Eric's Ultimate Solitaire (Alpha)
Eric's Ultimate Solitaire (Sparc)
Myth II: Soulblighter (PowerPC)
Railroad Tycoon II Gold Edition (PowerPC)
Sid Meier's Alpha Centauri with Alien Crossfire expansion pack (PowerPC)
Sid Meier's Alpha Centauri with Alien Crossfire expansion pack (Alpha)

Linux Game Publishing

Candy Cruncher (PowerPC)
Candy Cruncher (Sparc)
Gorky 17 (PowerPC)
Majesty Gold - Only first box version of Majesty Gold (without DRM) (PowerPC)
NingPo MahJong (PowerPC)
Soul Ride (PowerPC)
Soul Ride (Sparc)
Soul Ride (Alpha)

Runesoft

Robin Hood: Legenda Sherwood (PowerPC)

Illwinter Game Design

Dominions: Priests, Prophets & Pretenders (PowerPC)
Dominions II: The Ascension Wars (PowerPC)
Dominions 3 (PowerPC)

Canceled Games

Ballistics (PowerPC)
Disciples 2: Dark Prophecy (PowerPC)
Northland (PowerPC)
Sin (PowerPC)

Unofficial Games

Thilo Schulz

Star Trek Voyager: Elite Force (PowerPC)

Icculus

Duke Nukem 3D (PowerPC)
Quake 3 (PowerPC)

Solaris

Dominions: Priests, Prophets & Pretenders
Dominions II: The Ascension Wars

HP-UX

Dominions: Priests, Prophets & Pretenders (Demo)

Do you know others official commercial games ported to Linux (Alpha, PPC, Sparc), Solaris, HP-UX, AIX?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

games

i have installed SDL int /opt and i installed a game with pkgadd in /usr/local and when i try to start the game i says: ld.so.1: ./gamename: fatal: libSDL-1.1.so.0: open failed: No such file or directory what should i do (1 Reply)
Discussion started by: CreamHarry
1 Replies

2. What is on Your Mind?

Games?

So what kind of games we all play? If any? I like RTS, C&C fan here all the way :p (8 Replies)
Discussion started by: woofie
8 Replies

3. UNIX for Dummies Questions & Answers

UNIX games?

Does anyone know of any unix-based games? (1 Reply)
Discussion started by: danceofillusion
1 Replies

4. What is on Your Mind?

Of Computer wizards and games

You guys are really are a genius, you make computer processing more easy for us end users. You just don't make wonders but you also make good computer games too. Really there is a fast evolution on the era of the computer world. Thanks to you guys! __________________ The Cute Angry Birds... (0 Replies)
Discussion started by: methusela123
0 Replies

5. Ubuntu

use VM to play games in Windows (Intense Games)

I have Ubunut installed on my desktop AMD 6 Core 3.2 (will be getting the bulldozer AMD 8 Core when it releases) 16 GB of DDR3 1333 RAM SSD some HDD's Nvidia 560 ti 1GB My question is, how can I or can I even get a Win 7 VM to play games as well in a main install. Give it 10 GBs of RAM... (0 Replies)
Discussion started by: ochieman2000
0 Replies

6. What is on Your Mind?

What is your favourite movie at the moment?

Hi, guys. What is your favourite movie at the moment? Which movie are you watching? I am watching the Thor:) (17 Replies)
Discussion started by: Tinna
17 Replies

7. Post Here to Contact Site Administrators and Moderators

Where Are the Games?

Hi! I'm new to the site, and today I clicked on "Banking", curious as to what that was about. Aside from being able to "buy" things with these points, it appears there are some games available, on which you can wager your points. While I could access the "high scores", I could not find the... (14 Replies)
Discussion started by: sudon't
14 Replies

8. What is on Your Mind?

Favourite Games console

So what is everyones all time favourite games console and why do you like it? (Please - no comments on why they are better than others as that would be opinion based and cause arguments, positive comments only) (28 Replies)
Discussion started by: Tommyk
28 Replies

9. Post Here to Contact Site Administrators and Moderators

How to hack computer games that is paid???

Plz help me to hack computer games that is paid ty (1 Reply)
Discussion started by: 09287501067
1 Replies

10. UNIX Desktop Questions & Answers

Which is your favourite desktop?

Most of the people think that they can not use Unix as desktop. By this poll we gone tell them that we not just use Unix as desktop but also love different display managers like GNOME, KDE etc..... (35 Replies)
Discussion started by: ynilesh
35 Replies
ARCH(3) 						   BSD Library Functions Manual 						   ARCH(3)

NAME
NXGetAllArchInfos, NXGetLocalArchInfo, NXGetArchInfoFromName, NXGetArchInfoFromCpuType, NXFindBestFatArch, NXCombineCpuSubtypes -- get archi- tecture information SYNOPSIS
#include <mach-o/arch.h> extern const NXArchInfo * NXGetAllArchInfos(void); extern const NXArchInfo * NXGetLocalArchInfo(void); extern const NXArchInfo * NXGetArchInfoFromName(const char *name); extern const NXArchInfo * NXGetArchInfoFromCpuType(cpu_type_t cputype, cpu_subtype_t cpusubtype); extern struct fat_arch * NXFindBestFatArch(cpu_type_t cputype, cpu_subtype_t cpusubtype, struct fat_arch *fat_archs, unsigned long nfat_archs); extern cpu_subtype_t NXCombineCpuSubtypes(cpu_type_t cputype, cpu_subtype_t cpusubtype1, cpu_subtype_t cpusubtype2); DESCRIPTION
These functions are intended for use in programs that have to deal with fat files or programs that can target multiple architectures. Typi- cally, a program will use a command-line argument that starts with ``-arch name'', where this specifies an architecture. These functions and data structures provide some help for processing architecture flags and then processing the contents of a fat file. The structure NXArchInfo is defined in <mach-o/arch.h>: typedef struct { const char *name; cpu_type_t cputype; cpu_subtype_t cpusubtype; enum NXByteOrder byteorder; const char *description; } NXArchInfo; It is used to hold the name of the architecture and the corresponding CPU type and CPU subtype, together with the architecture's byte order and a brief description string. The currently known architectures are: Name CPU Type CPU Subtype Description ppc CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_ALL PowerPC i386 CPU_TYPE_I386 CPU_SUBTYPE_I386_ALL Intel 80x86 m68k CPU_TYPE_MC680x0 CPU_SUBTYPE_MC680x0_ALL Motorola 68K hppa CPU_TYPE_HPPA CPU_SUBTYPE_HPPA_ALL HP-PA i860 CPU_TYPE_I860 CPU_SUBTYPE_I860_ALL Intel 860 m88k CPU_TYPE_MC88000 CPU_SUBTYPE_MC88000_ALL Motorola 88K sparc CPU_TYPE_SPARC CPU_SUBTYPE_SPARC_ALL SPARC ppc601 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_601 PowerPC 601 ppc603 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_603 PowerPC 603 ppc604 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_604 PowerPC 604 ppc604e CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_604e PowerPC 604e ppc750 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_750 PowerPC 750 ppc7400 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_7400 PowerPC 7400 ppc7450 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_7450 PowerPC 7450 ppc970 CPU_TYPE_POWERPC CPU_SUBTYPE_POWERPC_970 PowerPC 970 i486 CPU_TYPE_I386 CPU_SUBTYPE_486 Intel 486 i486SX CPU_TYPE_I386 CPU_SUBTYPE_486SX Intel 486SX pentium CPU_TYPE_I386 CPU_SUBTYPE_PENT Intel Pentium i586 CPU_TYPE_I386 CPU_SUBTYPE_586 Intel 586 pentpro CPU_TYPE_I386 CPU_SUBTYPE_PENTPRO Intel Pentium Pro i686 CPU_TYPE_I386 CPU_SUBTYPE_PENTPRO Intel Pentium Pro pentIIm3 CPU_TYPE_I386 CPU_SUBTYPE_PENTII_M3 Intel Pentium II Model 3 pentIIm5 CPU_TYPE_I386 CPU_SUBTYPE_PENTII_M5 Intel Pentium II Model 5 m68030 CPU_TYPE_MC680x0 CPU_SUBTYPE_MC68030_ONLY Motorola 68030 m68040 CPU_TYPE_MC680x0 CPU_SUBTYPE_MC68040 Motorola 68040 hppa7100LC CPU_TYPE_HPPA CPU_SUBTYPE_HPPA_7100LC HP-PA 7100LC The first set of entries are used for the architecture family. The second set of entries are used for a specific architecture, when more than one specific architecture is supported in a family of architectures. NXGetAllArchInfos() returns a pointer to an array of all known NXArchInfo structures. The last NXArchInfo is marked by a NULL name. NXGetLocalArchInfo() returns the NXArchInfo for the local host, or NULL if none is known. NXGetArchInfoFromName() and NXGetArchInfoFromCpuType() return the NXArchInfo from the architecture's name or CPU type/CPU subtype combina- tion. A CPU subtype of CPU_SUBTYPE_MULTIPLE can be used to request the most general NXArchInfo known for the given CPU type. NULL is returned if no matching NXArchInfo can be found. NXFindBestFatArch() is passed a CPU type and CPU subtype and a set of fat_arch structs. It selects the best one that matches (if any), and returns a pointer to that fat_arch struct (or NULL). The fat_arch structs must be in the host byte order and correct such that fat_archs really points to enough memory for nfat_archs structs. It is possible that this routine could fail if new CPU types or CPU subtypes are added and an old version of this routine is used. But if there is an exact match between the CPU type and CPU subtype and one of the fat_arch structs, this routine will always succeed. NXCombineCpuSubtypes() returns the resulting CPU subtype when combining two different CPU subtypes for the specified CPU type. If the two CPU subtypes can't be combined (the specific subtypes are mutually exclusive), -1 is returned, indicating it is an error to combine them. This can also fail and return -1 if new CPU types or CPU subtypes are added and an old version of this routine is used. But if the CPU sub- types are the same, they can always be combined and this routine will return the CPU subtype passed in. SEE ALSO
arch(1) May 21, 2003
All times are GMT -4. The time now is 04:34 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy