User:Soundandfury
From Dwarf Fortress Wiki
Contents |
[edit] DF Designer
My fort planning / building design utility
[edit] Logic Gates
I'm experimenting a bit with dwarfputing. Details & designs will probably appear here in due course.
[edit] Fast latch gate
1st
### ~c# ###
2nd
#### #^c# ####
3rd
#### ++++. ####
1st c=S (hatch)
2nd c=R, ^=Q
Acts as an SR flipflop but without a not-Q output. Can be used in construction of a clocked SR.
[edit] Clocked SR
1st
### ### # ~┼c# #c┼~c ### ### #
2nd
########### #^c#c^#^^c# ###########
3rd
########### +++++++++++. ###########
left to right:
1st: ┼=S, c=CLK, c=CLK, ┼=R, c=Q1
2nd: ^=Q1, c=Q, c=not-Q, ^=Q2, ^=notQ(0-1), ^=Q, c=Q2
All ^ are 6-7 except where specified (ie. notQ)
TESTED: WORKS (but Q and not-Q swapped)
