├── .gitignore ├── COPYING ├── Changelog ├── INSTALL ├── example.conf.php ├── msxconv.inc.php ├── scr12.class.php ├── scr2.class.php ├── scr5.class.php ├── scr6.class.php ├── scr7.class.php ├── scr8.class.php └── scrconv.php /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/COPYING -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/Changelog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/INSTALL -------------------------------------------------------------------------------- /example.conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/example.conf.php -------------------------------------------------------------------------------- /msxconv.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/msxconv.inc.php -------------------------------------------------------------------------------- /scr12.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr12.class.php -------------------------------------------------------------------------------- /scr2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr2.class.php -------------------------------------------------------------------------------- /scr5.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr5.class.php -------------------------------------------------------------------------------- /scr6.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr6.class.php -------------------------------------------------------------------------------- /scr7.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr7.class.php -------------------------------------------------------------------------------- /scr8.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scr8.class.php -------------------------------------------------------------------------------- /scrconv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jannone/msx-screen-converter/HEAD/scrconv.php --------------------------------------------------------------------------------