Skip to content

Commit 4f0dc7d

Browse files
committed
🧑‍💻 writing docs. Changed for loop to generator in main.py
1 parent a75b5c8 commit 4f0dc7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+8714
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
__pycache__
22
.idea
33
.venv
4+
.env

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

build/doctrees/environment.pickle

27.2 KB
Binary file not shown.

build/doctrees/index.doctree

3.07 KB
Binary file not shown.

build/doctrees/main.doctree

28.5 KB
Binary file not shown.

build/doctrees/memory.doctree

110 KB
Binary file not shown.

build/doctrees/processor.doctree

27.2 KB
Binary file not shown.

build/doctrees/units.doctree

65.4 KB
Binary file not shown.

build/html/.buildinfo

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

build/html/_sources/index.rst.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
16-bit CPU built in Python documentation
2+
========================================
3+
4+
A 16-bit CPU built in Python by Neo Sahadeo.
5+
6+
.. toctree::
7+
8+
units
9+
memory
10+
processor
11+
main

0 commit comments

Comments
 (0)