Converting Games?
pmollohan
Posts: 1
Hello!
I was wondering if there was a program that could convert old MS-DOS games into games for the Hydra?· Is there such a program?
Thanks in advanced!
I was wondering if there was a program that could convert old MS-DOS games into games for the Hydra?· Is there such a program?
Thanks in advanced!
Comments
The Hydra is based on the Parallax Propeller which works in Spin, Assembly, and
now there is the release of a C compiler {just getting going}. You probably will
find yourself writing from scratch. However, many have found ways of importing
sprites, graphics, and audio from some of the older games.
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
New to the Propeller?
Getting started with a Propeller Protoboard?
Check out: Introduction to the Proboard & Propeller Cookbook 1.4
Updates to the Cookbook are now posted to: Propeller.warrantyvoid.us
Got an SD card connected? - PropDOS
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
I am 1011, so be surprised!
Advertisement sponsored by dfletch:
Come and join us on the Propeller IRC channel for fast and easy help!
Channel: #propeller
Server: irc.freenode.net or freenode.net
If you don't want to bother installing an IRC client, use Mibbit. www.mibbit.com
What you have to understand is what you are asking -- first you would have to clearly define "programs" -- do you mean DOS .EXE, .COM files in pure binary, what graphics support? CGA, EGA, VGA? so on and so forth. Then what do you mean by "convert"? A program that takes a source file, the binary and then transcodes it to target language of interpretive code? In the simplest form, what you really are asking is "is there a PC emulator for the hydra?" This is really the only meaningful type of "conversion" we could hope to achieve [noparse]:)[/noparse] The answer is of course no. The propeller chip is a microcontroller with limited memory, etc. and although, its "possible" to write an 80xxx emulator with the propeller, you would need external ram, huge rom, etc. to make this whole thing fly.
So the moral of the story is if you have a simple DOS game that you would like to port to the hydra, then depending on the game, you can port it in ASM or BASIC/ASM with some work and time. People have successfully ported games like pacman, tetris, defender, donky kong and others to the hydra. And I use the word "port" loosely, since they did NOT port source code, but simply eyeballed the game and then cloned it bit by bit.
That said, some people have successfully written baby or limited versions of emulators for much simpler systems like the Timex sinclair, C64, and Atari computers. But, emulating a modern PC not really feasible or practical.
Andre'