Skip to content

keyvank/pygates

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyGates

Trying to understand how computers work at the transistor level in a Python simulation.

A Von-Neumann Brainfuck CPU:

FWD
P = P + 1
PC = PC + 1
MEM[P] = MEM[P]

BWD
P = P - 1
PC = PC + 1
MEM[P] = MEM[P]

INC
P = P
PC = PC + 1
MEM[P] = MEM[P] + 1

DEC
P = P
PC = PC + 1
MEM[P] = MEM[P] - 1

JZ
P = P
PC = X
MEM[P] = MEM[P]
P =
    p+1 if 0b000
    p-1 if 0b001
    else p

PC =
    X if 0b100 && 
    else PC + 1

MEM[P] =
    MEM[P] + 1 if 0b010
    MEM[P] - 1 if 0b011
    else MEM[P]

About

Simulating a CPU made of logic gates

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages