Hi,

i released a little helper script:

Code:
@ECHO OFF
cls
echo Compile all bin files in this folder to APPVARS for TI-84
echo by KDSBest

FOR %%a in (*.bin) do (
echo Compiling %%a to kdsbest.8XV
To8XV.exe %%a kdsbest
echo moving kdsbest.8xv to %%a.8xv
move kdsbest.8xv %%a.8xv
)
1. put To8XV.exe, all bin files and this batch script in 1 folder
2. run the script

IMPORTANT: filenames for TI must be lower than 8 chars, rename before converting or before uploading to TI
SOURCE: PS3 Reversing

Best regrets

KDSBest