Skip to content

Commit e503324

Browse files
committed
📝 Tweaking docs. Added API and fixing typos
1 parent 2b9ebdb commit e503324

37 files changed

+1192
-94
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# An authentic 16-bit CPU written in Python
2+
3+
Everthing except the RAM and NAND gate are derived from the NAND gate.
4+
5+
## Documentation
6+
7+
The documentation explains the interal logic of the CPU.
8+
9+
The documentation does not contain circuit diagrams; it does include
10+
the relevant logic gates.
11+
12+
[Docs](https://neosahadeo.github.io/16Bit-Python-CPU/)

build/doctrees/api.doctree

75.2 KB
Binary file not shown.

build/doctrees/environment.pickle

19.2 KB
Binary file not shown.

build/doctrees/implspec.doctree

4.2 KB
Binary file not shown.

build/doctrees/index.doctree

649 Bytes
Binary file not shown.

build/doctrees/memory.doctree

444 Bytes
Binary file not shown.

build/doctrees/processor.doctree

-61 Bytes
Binary file not shown.

build/doctrees/units.doctree

992 Bytes
Binary file not shown.

build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 49dd1b15c3490f75241c0e1820a69081
3+
config: 336a5504dd732f52ba354a20e1f991cf
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

build/html/_sources/api.rst.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
API Reference
2+
=============
3+
4+
.. automodule:: implspec
5+
:members:
6+
7+
8+
.. autoclass:: units.LogicGates
9+
:members:
10+
11+
.. autoclass:: units.LogicGates16
12+
:members:
13+
14+
.. autoclass:: units.HalfAdder
15+
:members:
16+
17+
.. autoclass:: units.FullAdder
18+
:members:
19+
20+
.. autoclass:: units.MultiBitAdder
21+
:members:
22+
23+
.. autoclass:: units.BitAdder16
24+
:members:

0 commit comments

Comments
 (0)