Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
to7-70_emulation_with_mess [2012/01/17 15:45] kdevto7-70_emulation_with_mess [2015/03/11 11:22] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +  * Get the roms
 +<code>
 +mkdir -p $HOME/mess/roms
 +mkdir $HOME/mess/software-to770
 +cd roms
 +wget http://www.di.ens.fr/~mine/mess/bios/thomroms2.zip
 +unzip thomroms2.zip
 +</code>
  
 +  * Test the roms
 +<code>
 + mess -verifyroms | grep ^romset
 +...
 +romset to7 is good
 +romset to770 is good
 +romset to770a [to770] is good
 +romset mo5 is good
 +...
 +</code>
 +
 +
 +  * Get the Logo Rom Cartridge from the DCMoto emulator website:
 +<code>
 +wget http://dcmoto.free.fr/programmes/logo/logo_memo7.zip
 +</code>
 +
 +  * Get the thomson to7/70 basic and arcanoid game
 +<code>
 +cd software-to770
 +wget http://www.di.ens.fr/~mine/mess/software/to770/basic.m7
 +wget http://lair.thomsonistes.org/to7/jeux/k7/arkanoid.zip
 +unzip arkanoid.zip
 +</code> 
 +
 +  * Start an emulated to7/70 with game Arkanoid from cassette image
 +<code>
 +mess -keymap -keymap_file /usr/share/games/mess/keymaps/km-de.txt to770 -cart basic.m7 -cass ARKANOID.K7
 +</code>
 + * Start an emulated to8 with Sapiens Game from floppy image
 +<code>
 +mess -keymap -keymap_file /usr/share/games/mess/keymaps/km-de.txt to8 -flop1 sapiens_to8.fd
 +</code>