Part of the official Quark firmware for the Agon series of microcomputers
Agon is a modern, fully open-source, 8-bit microcomputer and microcontroller in one small, low-cost board. As a computer, it is a standalone device that requires no host PC: it puts out its own video (VGA), audio (2 identical mono channels), accepts a PS/2 keyboard and has its own mass-storage in the form of a µSD card.
https://www.thebyteattic.com/p/agon.html
Each project is a self-contained executable and can be compiled and tested using the Zilog ZDS tools and USB smart cable.
The resultant Intel Hex file can be converted to an AGON executable bin file by using a hex2bin utility. If the command is to be executed as a star command from the command line, then the bin file must be copied to a mos directory in the root directory of the SD card.
For your convenience, I've included precompiled copies of completed projects in the BIN folder of this project.
ASM
:Hello World 16
: A simple example of a Z80 executable (16-bit Z80)Hello World 24
: A simple example of an ADL executable (24-bit Z80)Memory Dump
: A memory hex-dump to screen utility
C
:Hello World
: A simple example of a C executable (24-bit 280)Disassembler
: A fully featured eZ80 disassembler
The C code passes the following values to main
argc
: Number of argumentsargv
: An array of pointers to the arguments, the first argument being the executable's name
The ASM code passes the arguments in a slightly different way:
IX
: Pointer to array of pointers to the parameter stringsC
: Number of arguments
The MOS header is stored from bytes 64 in the executable and consists of the following:
- A three byte ASCII representation of the word MOS
- A single byte for the header version
- A single byte for the executable type: 0 = Z80, 1 = ADL
It is stored at offset 64 in order for there to be sufficient space for the Z80 in Z80 mode. You can see examples of these in each projects init.asm file.
Either add the mos/src folder to the include folder in the project settings or copy the latest mos_api.inc from the MOS project into the project folder before build.
- Each project is designed to assemble/compile in debug mode at address &040000.
- Once loaded, it can be executed using the MOS command
run
. - Additional parameters can be specified. for example:
run &40000 &100
. Note that you must specify the address of the executable in memory in this instance.
Z80 executables can be generated directly from the hex file created in the debug
folder of the project after assembly.
ADL executables first need to built using the release
profile. These are not relocatable; the release build will assemble to the final location &0B0000. Create the bin file from the hex file in the release
folder of the project.
NB: The ZDS tools currently clear the top of ram during download, which is why we debug them at a lower memory location.
Please do not issue pull requests or issues for this project; it is very much a work-in-progress. I will review this policy once the code is approaching live status and I have time to collaborate more.
This project is designed to be assembled and linked using the Zilog ZDS II toolkit - see the readme in MOS for more details.
Any custom settings for Agon development is contained within the project files, so no further configuration will need to be done.
All project files are released under an MIT license, unless there is an accompanying license in the project folder
- ZDS II tools
- A hex to binary convertor, for example hex2bin