Z80 Development Tools
Jump to navigation
Jump to search
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