Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
burningroms:willem [2009/04/20 10:04] ghstwlf Second Alpha |
burningroms:willem [2009/04/20 14:05] (current) ghstwlf Fifth Alpha - Adding pictures. |
||
|---|---|---|---|
| Line 25: | Line 25: | ||
| === Windows 9x/Me/NT/2000/XP === | === Windows 9x/Me/NT/2000/XP === | ||
| Extract/install the programmer software and start programming | Extract/install the programmer software and start programming | ||
| + | |||
| === Linux === | === Linux === | ||
| - | Install [[http://www.winehq.org/|Wine]] (optional, [[http://www.playonlinux.com/|PlayOnLinux]]) | + | Install [[http://www.winehq.org/|Wine]] |
| - | + | ||
| - | "If you are going to use more Windows software than the Willem programmer software, I would recommend to install [[http://www.playonlinux.com/|PlayOnLinux]] as well since we are going to need some Wine magic to get the parallel port to work" --- //[[wiki:user:ghstwlf|Pär Moberg]]// | + | |
| == Wine == | == Wine == | ||
| Wine is usually included in the packet repository of your distribution but the latest development releases for the big dists can be found at [[http://www.winehq.org/download/]] with good instructions. | Wine is usually included in the packet repository of your distribution but the latest development releases for the big dists can be found at [[http://www.winehq.org/download/]] with good instructions. | ||
| - | == PlayOnLinux == | + | == Wine prefix == |
| - | PlayOnLinux is target to gamers but has the feature of handling wineprefixes | + | A wine prefix is usefull to make for the programmer software since its needs is quite specific. It will be needed to run in Win9x mode and not in a WinNT/NT derivative mode. It also need a registry hack. |
| + | |||
| + | "In this tutorial I will be using the folder **EPROM** under my home directory to setup wine in" --- //[[wiki:user:ghstwlf|Pär Moberg]]// | ||
| + | |||
| + | **Warning:** treat everything you have to type inside this tutorial as case-sensitive. | ||
| + | |||
| + | {{:burningroms:willem-steg1.png}} | ||
| + | |||
| + | First make a folder and go to it in a terminal window\\ | ||
| + | Now, to make Wine aware of that this is a prefix we need to export this directory to environment as WINEPREFIX\\ | ||
| + | ''export WINEPREFIX=$PWD''\\ | ||
| + | And to check that it worked\\ | ||
| + | ''echo $WINEPREFIX''\\ | ||
| + | It should return the full path-name of your folder. | ||
| + | |||
| + | Now lets populate this folder with some useful stuff.\\ | ||
| + | ''wineboot''\\ | ||
| + | This will fill the $WINEPREFIX-folder with a basic wine system.\\ | ||
| + | ''winecfg''\\ | ||
| + | Now you have started the wine configuration tool and only thing we have to do here is to change windows-version to Windows 98\\ | ||
| + | ''wine regedit'' | ||
| + | |||
| + | {{:burningroms:willem-steg2.png}} | ||
| + | |||
| + | Inside of the register editor add the ''VDM'' key and then the ''ppdev'' key inside it.\\ | ||
| + | Add the Sting named ''378'' with the value ''/dev/parport0'' (if /dev/parport0 is your parallel port) | ||
| + | |||
| + | if you export ''ppdev'' using the register editor, the contents of the file should look something like this:\\ | ||
| + | ''REGEDIT4\\ | ||
| + | \\ | ||
| + | [HKEY_USERS\S-1-5-4\Software\Wine\VDM\ppdev]\\ | ||
| + | "378"="/dev/parport0"'' | ||
| + | |||
| + | Now download/copy your programmer software to $WINEPREFIX-folder and extract it if necessary. | ||