v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Difference between revisions of "User:Soundandfury"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
(☼Dwarfputer☼ planned)
 
(New section: Logic Gates)
Line 1: Line 1:
 
I'm experimenting a bit with dwarfputing.  Details & designs will probably appear here in due course.
 
I'm experimenting a bit with dwarfputing.  Details & designs will probably appear here in due course.
 +
 +
==Logic Gates==
 +
===Fast latch gate===
 +
1st
 +
###
 +
~c#
 +
###
 +
 +
2nd
 +
####
 +
#^c#
 +
####
 +
 +
3rd
 +
####
 +
++++.
 +
####
 +
 +
1st c=S (hatch)<br />
 +
2nd c=R, ^=Q<br />
 +
Acts as an SR flipflop but without a not-Q output.  Can be used in construction of a clocked SR.<br />
 +
 +
===Clocked SR===
 +
1st
 +
  ### ### #
 +
~┼c# #c┼~c
 +
  ### ### #
 +
 +
2nd
 +
  ###########
 +
  #^c#c^#^^c#
 +
  ###########
 +
 +
3rd
 +
  ###########
 +
  +++++++++++.
 +
  ###########
 +
 +
left to right:<br />
 +
1st: ┼=S, c=CLK, c=CLK, ┼=R, c=Q1<br />
 +
2nd: ^=Q1, c=Q, c=not-Q, ^=Q2, ^=notQ(0-1), ^=Q, c=Q2<br />
 +
All ^ are 6-7 except where specified (ie. notQ)<br />
 +
'''TESTED''': WORKS (but Q and not-Q swapped)<br />

Revision as of 20:46, 12 January 2009

I'm experimenting a bit with dwarfputing. Details & designs will probably appear here in due course.

Logic Gates

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.

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)