Re: Wii64 November 29, 2008 04:01AM | Registered: 16 years ago Posts: 59 |
Quote
emukidid
Just be patient. As you can see we are always trying and making some progress, but to be honest, we don't even know when we'll get it right and things will start to work the way we want them to, which is why I cannot give you a clear release date at the moment. Once things are as we want them, and stable too, we'll start throwing some release dates in the air.
Re: Wii64 November 30, 2008 01:47AM | Registered: 16 years ago Posts: 152 |
Re: Wii64 November 30, 2008 07:18PM | Registered: 16 years ago Posts: 1,012 |
Re: Wii64 December 01, 2008 05:31PM | Registered: 16 years ago Posts: 1,012 |
Re: Wii64 December 05, 2008 02:51AM | Registered: 16 years ago Posts: 499 |
Quote
strongfan
I think compiling is more of a pain in the ass than coding. I could probably get the hang of C++ if it didn't have makefiles and libraries and all that crap.
Quote
DanielHueho
Dude, compilling is exactly the fun part!!!! (It's actually the only part I known XD)
#program_type(consol); // tells the made-up compiler it's a console program #include wiiuse; void main(){ console_print("Hello, World! I don't know C++!"); loop(); exit(); } void loop(){ wiiuse.scan(); if wiiuse.wiimote1.home=true{ exit(); } else{ loop(); } }But I think that might return an error if I were to run it through the made-up compiler for my made-up language.
Re: Wii64 December 05, 2008 10:56PM | Registered: 16 years ago Posts: 499 |
Quote
strongfan
well technically, I pseudocode in a language similar sort of mixed with GML(game maker's language),
C/C++, and PHP.
EG, a Hello World program in a programming language I made up.#program_type(consol); // tells the made-up compiler it's a console program #include wiiuse; void main(){ console_print("Hello, World! I don't know C++!"); loop(); exit(); } void loop(){ wiiuse.scan(); if wiiuse.wiimote1.home=true{ exit(); } else{ loop(); } }But I think that might return an error if I were to run it through the made-up compiler for my made-up language.
Re: Wii64 December 07, 2008 01:04PM | Registered: 16 years ago Posts: 499 |