Z80 Development Tools
Revision as of 04:54, 1 June 2014 by Andrew Laird (talk | contribs) (Created page with "==Z88DK== The [http://www.z88dk.org/ Z88 Development Kit] is a Z80 C cross compiler. It comes supplied with an assembler/linker and a set of libraries implementing the C stan...")
Z88DK
The Z88 Development Kit is a Z80 C cross compiler. It comes supplied with an assembler/linker and a set of libraries implementing the C standard library for a number of Z80 computers, including the VZ200.
WinAPE
WinAPE is actually an Amstrad CPC emulator, but it has a built-in assembler that can easily be used to produce .VZ files by using the following header:
write "filename.vz" ;VZ header .hstrt db "VZF0" db "PROGRAM NAME" ; VZ Name - Up to 16 chars ds hstrt + 17 + 4 - $ db #f1 dw start org #7b00 ; Change this to whatever suits .start ; Your program code goes from here
Back to Main Page