ZMAC and ZLINK
|
---|
My very first Z80 assembler was ZMAC V1.07 (1980 by Small System Design, Manchester, New Hampshire).
The assembler package included the linker ZLINK V1.4, but it missed a library.
The generated code was not REL-80 compatible.
Also the symbol table generated by ZLINK was not compatible to that format generated by the CP/M linker LINK .
Parameter | ZMAC | ZLINK |
file1 | Error |
=file1 | Test without generating a file |
file2=file1 | file2=objekt | file2=.COM |
file2,=file1 | file2=objekt | file2=.COM |
,file2=file1 | file2=listing | file2=symbols |
file3,file2=file1 | file3=objekt, file2=listing | file3=.COM, file2=symbols |
|
|
KEYTYPE.MAC |
A simple utility for displaying inputs from console
- as characters, control characters as
^x
- decimal
- hexadecimal
- ocktal
- binary
For example:Read: l, decimal=108, hex=6C, octal=154, binary=01101100
Read: L, decimal= 76, hex=4C, octal=114, binary=01001100
Read: ^L, decimal= 12, hex=0C, octal=014, binary=00001100
|