Maker Pro
Maker Pro

creating your own z80 assembler

A

Ajat

is it possible to create my own z80 assembler using Java? if it is is there
any sites that could give more info on this. thanks in advance.
 
T

Travis Hayes

Ajat said:
is it possible to create my own z80 assembler using Java? if it is is there
any sites that could give more info on this. thanks in advance.

Go to www.Zilog.com and get a copy of the datasheet for the z80. Look
at the machine codes that each assembly mnemonic translates to, and then
write your program to make them. Or, have your program call the Zilog
assember and your work is done.
Did you perhaps mean that you want to write a compiler to allow you to
run Java code on the z80?
 
Top