## Die photo

### Data Chip 1811BM1 (cloned DC302)
![Die photo](/f11/img/1811vm1.jpg)

### Control Chip 1811ВУ1 (cloned DC303)
![Die photo](/f11/img/1811vu1.jpg)

### MMU Chip 1811BT1 (cloned DC304)
![Die photo](/f11/img/1811vt1.jpg)

Links to raw panoramic photos (CAUTION: files are VERY LARGE, browser might hang):
- [1811BM1 Top metal, 15Kx15K, 103M](http://www.1801bm1.com/files/retro/1811/images/1811vm1.jpg)
- [1811BM1 Diffusion, 15Kx15K, 77M](http://www.1801bm1.com/files/retro/1811/images/1811vm1-diff.jpg)
- [1811BT1 Top metal, 13Kx12K, 123M](http://www.1801bm1.com/files/retro/1811/images/1811vt1.jpg)
- [1811BT1 Diffusion, 13Kx12K, 91M](http://www.1801bm1.com/files/retro/1811/images/1811vt1-diff.jpg)
- [1811ВУ1 Top metal, 15Kx15K, 100M](http://www.1801bm1.com/files/retro/1811/images/1811vu1.jpg)
- [1811ВУ1 Diffusion, 15Kx15K, 73M](http://www.1801bm1.com/files/retro/1811/images/1811vu1-diff.jpg)
- [1811ВУ2 Top metal, 15Kx15K, 91M](http://www.1801bm1.com/files/retro/1811/images/1811vu2.jpg)
- [1811ВУ2 Diffusion, 15Kx15K, 130M](http://www.1801bm1.com/files/retro/1811/images/1811vu2-diff.jpg)
- [1811ВУ3 Top metal, 15Kx15K, 78M](http://www.1801bm1.com/files/retro/1811/images/1811vu3.jpg)
- [1811ВУ3 Diffusion, 15Kx15K, 92M](http://www.1801bm1.com/files/retro/1811/images/1811vu3-diff.jpg)

## The original DEC F-11

"The F-11 (code name: the Fonz) was DEC's second microprocessor design,
and the first to be architected by DEC personnel in 1979. Duane Dickhut
was the project leader, Bill Johnson was lead design engineer for
the Data chip, and Burt Hashizume wrote most of the microcode.
The MMU was designedby Dan Dobberpuhl's consulting company.

The F-11 was substantially more ambitious than the LSI-11. It implemented
the entire PDP-11/34 architecture, including FP11-compatible floating point
and KT11-compatibile memory management. It targeted 3X the performance
of the LSI-11, at almost the same clock rate. It provided physical address
extension out to 22b, the first system to do so after the PDP-11/70.
It implemented the PDP-11 Commercial Instruction Set as an option,
the only other implementation was for the PDP-11/44.

Like the LSI-11, the F-11 was a chip set consisting of three designs,
one of which could be replicated: the Control Chip (up to nine supported),
the Data chip, and the MMU chip. It was implemented in AMI's 6u NMOS
process and operated at 3.6Mhz (280ns microcycle). The DEC PDP-11/23
computer is based on the F-11 "Fonz" chipset" -
[Bob Supnik](http://simh.trailing-edge.com/semi/f11.html).

The 1811 series is the Soviet clone of F-11 chipset, produced by VFSD
("Voronezh Factory of Semiconductor Devices" - "Воронежский Завод
Полупроводниковых Приборов") behind the Iron Curtain in the second
half of 1980th.

- 1811BM1 / DC302 - 7922 gates
- 1811ВУх / ВС303 - ~12600 gates (depends on PLA/ROM content)
- 1811BT1 / DC304 - 10383 gates

## Models passed the factory tests
The factory tests passed by the model in simulation and on real FPGA:
- [jkdad0](/f11/tst/org/jkdad0.mac) - MMU diagnostics
- [jkdbd0](/f11/tst/org/jkdbd0.mac) - instruction set (BIS/EIS)
- [jkdcb0](/f11/tst/org/jkdcb0.mac) - FPP diagnostics, part 1
- [jkddb0](/f11/tst/org/jkddb0.mac) - FPP diagnostics, part 2

## Documentation
- [KDF11A processor schematic](http://www.bitsavers.org/pdf/dec/pdp11/1123/MP00734_KDF11A_EngrDrws.pdf) -
  the drawing and schematics of the M8186 DEC board, was used in PDP-11/23 model
- [KDF11B processor schematic](http://www.bitsavers.org/pdf/dec/pdp11/1123/MP01236_KDF11-B_schem.pdf) -
  the drawing and schematics of the M8189 DEC board, was used in PDP-11/23+ model
- [F11 microcode description](/f11/doc/1811.pdf) - the F11 microcode mnemonics,
  restored from reverse engineering, might differ from originals (no one knows
  how these ones looked like)
- [Micro Disassembler](/f11/rom/tools/disf11.py) - the Microcode Disassembler developed in Python

## Directory structure
#### \hdl
- the directory contains HDL-related materials, sources, and sample projects for Quartus and ISE.
There are three models: original asynchronous, refactored synchronous and Wishbone compatible

#### \hdl\org
- asynchronous Verilog HDL model is as close as possible to the original gate-level schematics.
In practice can be used for modeling purposes only, because processor contains latches (note,
it differs from flip-flop), those work in non-reliable fashion on synchronous FPGAs. Nonetheless,
this model is included in the package as a demo of the closest possible approximation 
to the original die. Maybe not synthesizable with some tools, simulation only.

#### \hdl\syn
- synchronous Verilog HDL model, the frontend bus is Q-Bus, uses single clock to operate, does not
contain latches, MMU and FPP register arrays are optimized for inferred block memory and whole model
can be synthesized for synchronous FPGAs. The master generator (mclk) is refactored, high and low
phases take single clock, hence, master clock is half of oscillator clock (no a quarter or slower
as in original F11). This model is intermedate step for final Wishbone-compatible version.

#### \hdl\wbc
- synchronous Wishbone compatible version of F-11 synchronous core uses a single clock,
is FPGA-optimized, and follows the original command execution timings, is intended for SoC building.
Model uses at least two core clocks to execute single microcode instruction.

#### [\cad\f11](https://github.com/1801BM1/cad11/tree/master/f11) (moved to dedicated repo)
- topology in Sprint Layout format
- topology in PCD-2004 pcb format
- schematics in PCD-2004 sch format
- schematics in pdf (gate level)

#### \rom
- MicROM binary images (checked against read from real chips)
- tools (Microcode Disassemler, written in Python)

#### \tst
- test software, including restored factory test sources and ROM images. Build batch should
be run before building FPGA bitstream to include test software image

## How to simulate
- run "tst\build.bat test" to prebuild desired test software image ("test" is a sample)
- run ModelSim simulator
- set "f11/hdl/org/sim/de0" as working directory in ModelSim (File->Change Directory)
- execute "do run.do" console command
- wait, simulation may take some time till complete
- see the results in waveform and console output

## Implemented resources
- RAM 16Kx16bit at 000000<sub>8</sub> with initialized content from test.mif file
- TTY at 177560<sub>8</sub>, 60<sub>8</sub>/64<sub>8</sub> vector interrupts,
  tx/rx with cts/rts handshake, 115200/8/N/1, RS-232 levels (board dependent).
- 50Hz system timer interrupt (IRQ2, edge sensitive, vector 100<sub>8</sub>),
  enabled by board switch[0], if timer is enabled the board led[0] lights
- 4x7-segment display, segments attached to output registers at 177714<sub>8</sub>/177715<sub>8</sub>,
  see the test software source for the details
- switches and buttons can be read from input register at 177714<sub>8</sub>
- board button[0] is reset, short press less than 1 sec causes system reset,
  long press over 1 second simulates power reset (excluding RAM content)

## Fmax and FPGA resources
- Wishbone compatible F-11 core
- CPU register file over flip-flops, MicROM in RAM blocks
- MMU and FPP options are enabled (disabling of both typically frees ~30 percents
  of logic, ~20 percents of registers, ~70 percents of block memory and provides
  ~10 percents of Fmax gain)
- FPP and MMU register files use RAM blocks
- balanced area/speed optimization chosen
- slow model, worst corner

All results are just approximate estimations by synthesis tools (Quartus/XST/Vivado) on sample
projects.

| Board   | FPGA             | Family       | Fmax    | LUTs | FFs  | MEM    |
|---------|------------------|--------------|---------|------|------|--------|
| DE0     | EP3C16F484C6N    | Cyclone III  | 115 MHz | 2843 | 752  | 7 M9K  |
| DE1     | EP2C20F484C7N    | Cyclone II   | 64 MHz  | 2753 | 728  | 11 M4K |
| DE2-115 | EP4CE115F29C7N   | Cyclone IV   | 97 MHz  | 2794 | 720  | 7 M9K  |
| DE10-LT | 10M50DAF484C7G   | Max 10       | 86 MHz  | 2691 | 736  | 7 M9K  |
| QC5     | 5CEFA2F23I7N     | Cyclone V    | 106 MHz | 2114 | 1099 | 6 M10K |
| QC10    | 10CL006U256CN8   | Cyclone 10   | 79 MHz  | 2677 | 724  | 7 M9K  |
| EG4     | EG4S20BG256      | Eagle EG4S20 | 86 MHz  | 3821 | 830  | 9 M9K  |
| QA7     | XC7A35TFTG256-1  | Artix 7      | 100 MHz | 3798 | 1536 | 8.5 BR |
| QK7     | XC7K325TFFG676-1 | Kintex 7     | 133 MHz | 3073 | 1380 | 8.5 BR |
