Z80 Development Tools

From VZ200
Revision as of 05: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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