Changes
WinCPC
,'''WinCPC''' is an emulator for the range of old-generation Amstrad CPC computers. It has been developed by [[Flynn]] and runs under MS Windows.
Works very fine on GNU/Linux using wine ( far better than WinAPE ).
== Features ==
* window or fullscreen mode
* Drag'n'drop for DSK, CDT and ZIP files
== How to assemble z80 software with WinCPC ==
Use for example the asm code on the author's contact page [http://www.wincpc.ch/index.php?topic=contact]
Open it in the z80 assembler and compile it. The software give you the entry point adress and the size.
* execute it :
<pre>
CALL &8000
</pre>
* save it on a dsk ( should be insert of course ):
<pre>
SAVE "flynn.bin",b,&8000,&1C
</pre>
* to execute the saved binary :
<pre>
MEMORY &7FFF
LOAD "flynn.bin",&8000
CALL &8000
</pre>
== Web links ==