I inherited my friend Barney de Villiers' 6809 Microsystem. Here is where I keep everything I know about it.
The 6809 Microsystem - Specifications by Jonathan Eva and Neil Walsh.
6809 Microsystem System Software -- 4k debug / monitor EPROM.
The PCB itself precedes the schematic -- look closely at U21, there are no pads on the PCB for it -- obviously a later addition. It seems to match the schematic though. I would have dead-bugged the mod but I have to say, this way is ridiculously professional.
DAT is a way of mapping the 16-bit (64 kilobyte) processor logical address space to a larger (in this specific case 256 kilobyte but easily changed to 1 Megabyte) physical address space in blocks of (in this case) 4 kilobytes.
It gets a bit complex, but basically a static RAM device (DAT RAM) is connected in such a way that the upper (in this case) 4 logical address lines from the CPU (the logical address lines) provide the address lines to the DAT RAM and the data from the DAT RAM becomes (in this case) 6 (but obviously easily 8) address lines (the physical address lines), and depending on where you start intercepting the logical address lines this defines the block size and the physical memory size.
Specifically: logical A12-A15 provides the address lines to the DAT RAM. The DAT RAM provides physical A12-A15 as well as a newly generated A16 and A17 (and, trivially, A18 and A19 because the DAT RAM is eight bytes wide -- but not in this specific case).
Physical RAM block size is (A0-A11) 4 kilobytes. Logical RAM size is (A0-A17) 256 kilobytes.
The DAT RAM must obviously contain the mapping from the logical to the physical RAM. And more importantly, we need a mechanism to write the mapping to this RAM. In practice, the RAM is mapped to the high end of the physical address space, and provision is made to turn the DAT translation off for that block of memory -- so reads from 0xFFxx are always mapped to 0x3FFxx, and writes to 0xFFxx go into the DAT RAM (with more gates this could be 0xFFFx but there's no sense since a typical system needs at least 256 bytes of ROM -- but if you wanted to you could).
Excerpt from the GIMIX 6809+ CPU BOARD manual.
It uses a 140ANB4 picture tube.
|
Back to Wouter's 6809 Page | (This page last modified 2020-09-25) |