| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
You've your Sanco retrocomputer, but you have no peripherals and no disks, so you have no idea how to interact with it. Or, you have them, but something is not quite working right? Or, you need to transfer data from/to your computer? Here you can find some utilities to jump start your computer from scratch!
You may also be interested in the ceda-demo repository, which shows how to link C and assembly programs for the Sanco, how to interact with its peripherals, exploit some custom hardware features, and, of course, test custom mods 😎
If your computer does not come with a CP/M disk, you need to jumpstart it using a custom bootloader in the BIOS ROM, and a serial cable.
⚠ Mess with electronics only if you know what you are doing. Beware: you may harm your computer, or even yourself! Everything you do is at your own risk.
Install the z88dk suite in your path, and then just:
make
Output binaries are in the build directory, including the patched ROM with the serial bootloader.
These utils can be run even if you only have a BIOS, and can be used to jumpstart your computer from scratch (eg. if you don't have a CP/M disk). But, you need a custom bootloader in the BIOS ROM (see above).
Once compiled, each specific raw output binary is embedded in a .pkt (packet) file. To send it to the patched bootloader, connect your serial cable, then just:
python3 script/sendpacket.py < build/<util.pkt>
interrupt.asm Configure the CTC (timer counter) peripheral in order to send interrupts periodically to the Z80, and install an interrupt vector to handle them.
loadfloppy.asm This small program add the capability to format, read, write data to physical disk at low level. The program supports only one floppy drive, and is used in tandem with the corresponding loadfloppy.py Python script. It was used just to create our first Sanco floppy disk using an image found on the internet.
These utils can be run under CP/M. In order to use them, you need to boot from a CP/M disk.
This repository is part of the ceda documentation project by Retrofficina GLG.
| Back | FazBrowse Home | New Git URL |