Caanoo / WIZ Nothing On My Caanoo Works


MilloCz

Still Fresh
Joined
Apr 13, 2010
Messages
66
Age
28
Location
Czech Republic - Jihomoravské kraj
Website
www.millocz.blog.cz
Hello, i've tried following applications

bgd-galaxian
bgd-g-sensor
bgd-keys
bgd-pacman

only bgd-keys is working, but L+R to exit doesnt work again ... others doesnt work at all; there's just "loading" screen for one second and then it returns me back to menu

I also tried:

import "mod_say" // import the module to output text to console, using say()

Process Main() // start the definition of the main process
Begin // start the code
say("Hello World!");
End // end the definition of the main process

And it does NOT work too

Dont you have clue what could it be? My Caanoo firmware is 1.6.0

EDIT: I tried also

#!/bin/sh
unset OS_ID

## Is important set first bgd-runtime folder
LD_LIBRARY_PATH_BAK=$LD_LIBRARY_PATH
PATH_BAK=$PATH

LD_LIBRARY_PATH=bgd-runtime:$LD_LIBRARY_PATH
PATH=bgd-runtime:$PATH

### For use Wiz games on Caanoo uncomment the next lines
#OS_ID=8
#export OS_ID

echo 2 > /proc/cpu/alignment

for prg in *.prg; do
name=`basename $prg .prg`
bgdc $prg
bgdi $name
done

sync

LD_LIBRARY_PATH=$LD_LIBRARY_PATH_BAK
PATH=$PATH_BAK

cd /usr/gp2x
exec /usr/gp2x/gp2xmenu
 

Similar threads

Back
Top