1
0
Эх сурвалжийг харах

Update new repo link, add requirements.txt.

Signed-off-by: bart <bart@b4rt.nl>
bart 8 сар өмнө
parent
commit
01a00e1603

+ 1 - 1
Assembler/CompileInstruction.py

@@ -1,4 +1,4 @@
-from bitstring import Bits #pip install bitstring if you have not already
+from bitstring import Bits
 '''
 Library for compiling single instructions
 '''

+ 1 - 1
BCC/FPGCbuildTools/bcc/backend.c

@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2021-2022, b4rt-dev
+Copyright (c) 2021-2022, bartpleiter
 Copyright (c) 2012-2015, Alexey Frunze
 All rights reserved.
 

+ 1 - 1
BCC/FPGCbuildTools/bcc/bcc.c

@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2021, b4rt-dev
+Copyright (c) 2021, bartpleiter
 Copyright (c) 2012-2020, Alexey Frunze
 All rights reserved.
 

+ 1 - 1
BCC/FPGCbuildTools/bcc/nodefbcc.c

@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2021, b4rt-dev
+Copyright (c) 2021, bartpleiter
 Copyright (c) 2012-2020, Alexey Frunze
 All rights reserved.
 

+ 1 - 1
BCC/backend.c

@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2021-2022, b4rt-dev
+Copyright (c) 2021-2022, bartpleiter
 Copyright (c) 2012-2015, Alexey Frunze
 All rights reserved.
 

+ 1 - 1
BCC/bcc.c

@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2021-2022, b4rt-dev
+Copyright (c) 2021-2022, bartpleiter
 Copyright (c) 2012-2020, Alexey Frunze
 All rights reserved.
 

+ 1 - 1
Documentation/deploy.sh

@@ -1,6 +1,6 @@
 #!/bin/sh
 
-mkdocs build --clean
+python3 -m mkdocs build --clean
 
 # Obviously I use public key authentication to login.
 # No secret server information is displayed here :P

+ 4 - 4
Documentation/docs/index.md

@@ -1,6 +1,6 @@
 # Welcome
 
-[![FPGC Logo](images/logo_big_alpha.png)](https://www.github.com/b4rt-dev/fpgc6)
+[![FPGC Logo](images/logo_big_alpha.png)](https://www.github.com/bartpleiter/fpgc6)
 
 !!! warning
     This Wiki is regularly outdated
@@ -15,7 +15,7 @@ TODO: add picture of FPGC running edit on edit.c
 
 ## New in version 6
 
-The largest change in the FPGC6 is the complete redesign of the CPU from the [FPGC5](https://github.com/b4rt-dev/FPGC5) with more advanced techniques and performance in mind. The new CPU (built from scratch again) is now a pipelined CPU including hazard detection/forwarding with a better architecture for running C code including better signed integer support. It also allows for L1 cache (although currently not implemented). A lot of inspiration for the CPU is taken from MIPS, because many online resources on more advanced CPU techniques like pipelining and caching use MIPS as example. As for implementation specific inspiration, I looked a lot at [mips-cpu by jmahler](https://github.com/jmahler/mips-cpu), since it is a good example of a simple pipelined CPU.
+The largest change in the FPGC6 is the complete redesign of the CPU from the [FPGC5](https://github.com/bartpleiter/FPGC5) with more advanced techniques and performance in mind. The new CPU (built from scratch again) is now a pipelined CPU including hazard detection/forwarding with a better architecture for running C code including better signed integer support. It also allows for L1 cache (although currently not implemented). A lot of inspiration for the CPU is taken from MIPS, because many online resources on more advanced CPU techniques like pipelining and caching use MIPS as example. As for implementation specific inspiration, I looked a lot at [mips-cpu by jmahler](https://github.com/jmahler/mips-cpu), since it is a good example of a simple pipelined CPU.
 
 Version 6 of the FPGC now also contains a better SDRAM controller and cache, which greatly reduces the SDRAM bottleneck.
 Aside from this and the CPU, all other parts of the system are mostly identical to the FPGC5, and the CPU itself still has all old instructions implemented (although using different opcodes and argument placement) except for COPY. Therefore, after updating the Assembler, almost all code will still work meaning I do not have to rewrite most of my code base.
@@ -32,13 +32,13 @@ Aside from this and the CPU, all other parts of the system are mostly identical
 
 FPGC6:
 
-- [Github Repository](https://www.github.com/b4rt-dev/FPGC6)
+- [Github Repository](https://www.github.com/bartpleiter/FPGC6)
 - [Gogs Mirror](https://www.b4rt.nl/git/bart/FPGC6-mirror)
 - [Documentation](https://www.b4rt.nl/fpgc)
 
 FPGC5:
 
-- [Github Repository](https://github.com/b4rt-dev/FPGC5)
+- [Github Repository](https://github.com/bartpleiter/FPGC5)
 - [Gogs Mirror](https://www.b4rt.nl/git/bart/FPGC5-mirror)
 - [Documentation](https://www.b4rt.nl/fpgc5)
 

+ 2 - 2
Documentation/mkdocs.yml

@@ -17,8 +17,8 @@ markdown_extensions:
   - pymdownx.tasklist:
       custom_checkbox: False
 
-repo_name: b4rt-dev/FPGC6
-repo_url: https://github.com/b4rt-dev/fpgc6
+repo_name: bartpleiter/FPGC6
+repo_url: https://github.com/bartpleiter/fpgc6
 
 site_url: https://www.b4rt.nl/fpgc
 

+ 1 - 1
Documentation/run.sh

@@ -1,2 +1,2 @@
 #!/bin/sh
-mkdocs serve -a localhost:8088
+python3 -m mkdocs serve -a localhost:8088

+ 10 - 0
requirements.txt

@@ -0,0 +1,10 @@
+bitstring
+black
+isort
+mkdocs
+mkdocs-awesome-pages-plugin
+mkdocs-material
+numpy
+pillow
+pyserial
+tqdm