Add files via upload

This commit is contained in:
Takiiiiiiii
2022-01-11 05:28:26 -08:00
committed by GitHub
parent c2552f5f18
commit 8ba933e1b5
6 changed files with 24 additions and 0 deletions

12
Emu/GB/config.json Normal file
View File

@ -0,0 +1,12 @@
{
"label":"GB",
"icon":"ic-GB.png",
"iconsel":"",
"launch":"launch.sh",
"rompath":"../../Roms/GB",
"imgpath":"../../Imgs/GB",
"useswap":0,
"shortname":0,
"hidebios":0,
"extlist":"gb|gbc"
}

3
Emu/GB/cpufreq.sh Normal file
View File

@ -0,0 +1,3 @@
echo performance > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor

BIN
Emu/GB/gambatte Normal file

Binary file not shown.

BIN
Emu/GB/gamebatte Normal file

Binary file not shown.

BIN
Emu/GB/ic-GB.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

9
Emu/GB/launch.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
echo $0 $*
progdir=`dirname "$0"`
homedir=`dirname "$1"`
cd $progdir
./cpufreq.sh
HOME=$homedir $progdir/gambatte "$1"