diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..de5c6cf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +*.class +*.o +*.so +midpath/resources.list +phoneme_advanced_mr2/tools/output +phoneme_advanced_mr2/cdc/build/** +!phoneme_advanced_mr2/cdc/build/linux-arm-generic/GNUmakefile +release/ \ No newline at end of file diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 00000000..4982c4cb --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,36 @@ +WARNING: This is an exprimental release. Crashes and hang is expected :) + This may lead to coruption of your SDCARD. + +IMORTANT: Make a backup of your SDCARD before running this software. + + +Description: + This is a emulator (runtime environment in fact) for Java 2 ME software (J2ME). + It is compatibel with Bittboy (and PocketGo) + + +Notes: +- Resolution is fixed to 176x220. +- Sound is not working. +- You may have to try several versions of a game to find a compatible version. + +Installation: +1. Copy the folder bittboy-j2me/ to emus/ + +2. Copy the file menu/bittboy-j2me to gmenu2x/sections/emulators/ + +3. Create folder main/roms/j2me + (put jar files here) + + +Keys: +A = (5) FIRE +B = (3) +TA = (7) +TB = (1) +R = (0) +SELECT = SOFTKEY LEFT +START = SOFTKEY RIGHT + + + diff --git a/bittboy-j2me b/bittboy-j2me index ef226a88..8e4d471f 100644 --- a/bittboy-j2me +++ b/bittboy-j2me @@ -2,5 +2,5 @@ title=Bittboy-J2ME description=Bittboy-J2ME exec=/mnt/emus/bittboy-j2me/bin/runjar.sh clock=702 -selectordir=/mnt/emus/bittboy-j2me/dist +selectordir=/mnt/roms/j2me selectorelement=1 diff --git a/release.sh b/release.sh index bcc5a271..528ccbd0 100755 --- a/release.sh +++ b/release.sh @@ -4,6 +4,7 @@ rm -rf release mkdir release mkdir release/bittboy-j2me +mkdir release/menu mkdir release/bittboy-j2me/jvm cp -r phoneme_advanced_mr2/cdc/build/linux-arm-generic/bin release/bittboy-j2me/jvm/ @@ -23,3 +24,5 @@ done cp -r midpath/bin/ release/bittboy-j2me/ cp -r midpath/configuration/ release/bittboy-j2me/ +cp ./bittboy-j2me release/menu +cp ./INSTALL.txt release