Excellent video! I read a book ages ago called "But how do it know?" which covered not just this, but how to make memory cells, RAM, registers, everything. Basically a full NAND to Tetris style book. This was a really good summary of the same fundamental concepts, excellent work!
@WhatsACreel2 жыл бұрын
Thanks mate!! Sounds like a great read, if I ever come across that book I'll defo pick it up! Thanks for watching :)
@ulysses_grant2 жыл бұрын
This book is a hidden gem! I go back to it once in a while, simply amazing material.
@phasm422 жыл бұрын
I bought this book for my son and nieces/nephews, and I have extra copies on stand-by 😅
@RupertReynolds19622 жыл бұрын
Book ordered. Thanks for the pointer :-)
@ulysses_grant2 жыл бұрын
@@RupertReynolds1962 Great! If you like the subject you'll definitely love the book!
@Cracked1ce2 жыл бұрын
This is the concept behind a Single Instruction Set Computer using NAND. Another great addition would be to show how NAND can be used to create a latch which is used for memory, flip flops, pipelining, etc.
@WhatsACreel2 жыл бұрын
Oh that is a good addition!! Cheers for watching :)
@flatfingertuning7272 жыл бұрын
Attempting to construct a computer exclusively from gates identical whose inputs are indistinguishable from each other will yield a problem: if all gates have a propagation time of exactly N, all positive feedback loops will have a propagation time that's a multiple of 2N, making it impossible to build a synchronizer. If one can control propagation times to avoid such issues, or impose setup/hold requirements on all inputs and outputs including things like buttons, building a computer out of NANDs wouldn't be the most practical approach, but it would hardly be impossible. The number of two-input NAND gates required to form an N-bit RAM, for example, would be O(N)--not even O(NlgN)--if one is willing to accept an O(lgN) access time, and some practical machines like the Apollo Guidance Computer were built almost entirely out of a single kind of gate (NOR gates in the case of the AGC) except for things like the memory system which could have been built out of NAND cates, but were more efficiently constructed using magnetic cores.
@mocringe8112 жыл бұрын
Can you link somewhere for me to look into this?
@flatfingertuning7272 жыл бұрын
@@mocringe811 It's possible to build a one-bit RAM "RAM" using four NAND gates, if the data input is available in both true and complemented formats. Given two N-bit RAMs, it's possible to produce a 2N bit RAM by adding about eight NAND gates. As RAMs get bigger, the average cost per bit will increase, but never exceed twelve NAND gates (1.5 times 8) per bit.
@mocringe8112 жыл бұрын
I've played around a bit with these logic gates, making these registers, ALUs and such, I thought Daniel was referring to the NAND function itself creating memory, thanks anyway
@heaslyben2 жыл бұрын
Oh nice, I like how you used a variety of games to motivate the concept of completeness! It gives a solid intuition because games are obviously logic-based and computable, but also an unlimited, creative, imaginative space.
@deltakid02 жыл бұрын
Your channel is like several years ahead from me to understand it, I've found really interesting videos here that are like 5 or 9 years old (such as self-modifying code and x86 Asm). It's just too much information for a regular C# programmer like I am, but I always wanted low level things that I'm just starting to understand. Anyway, thank you very much for this because no one in the entire planet talks about, and that is very valuable for me.
@Jackarooo2 жыл бұрын
There's a great programming class online called Nand 2 Tetris where you start off with making all of the boolean operators with nand gates and then build an ALU and CPU with that and write assembly and eventually build an OS. But the key idea there is that everything is just layers of abstraction on top of a bunch of logical gates (which could technically be all nand gates)
@mikefochtman7164 Жыл бұрын
Ages ago in school, I remember working out how to make a complete two-bit adder, using nothing but NAND gates. You can't do this with 'OR' only gates, or 'AND' only. But 'NAND' gates can be used to create NOT, AND, and OR so you're able to create just about anything.
@danielvest96022 жыл бұрын
I remember college learning these truth tables in 3 different classes - assembly programming, philosophy &logic, and statistical logic.
@robertjames49082 жыл бұрын
The third truth table in statistical logic would that be common-sense statistics or government statistics? Experience shows the two do share the same truth tables.🤣🤣=😭
@danielvest96022 жыл бұрын
@@robertjames4908 Definitely common sense. Government logic makes my head explode 🤣
@ulysses_grant2 жыл бұрын
I just luv the way you can make such dull subjects (just like boolean algebra can get in a discrete maths book) become so exciting to talk about, not to mention the unique sense of humor you have in discussing such things. You have the gift of teaching. Great stuff, just awesome!
@JodyBruchon2 жыл бұрын
There is an interesting concept called a OISC: One Instruction Set Computer. It's a processor that only does one operation while still being a general-purpose computer. An example of a single operation that could be used for this computer is SUBLEQ: subtract and branch if result less than or equal to. There's an excellent article on TechTinkering that illustrates this one.
@programaths2 жыл бұрын
First year of curriculum: rewrite the expression only using NAND gates. The game starts when you golf it!
@mojacodes2 жыл бұрын
it can also be done using only XOR gates!
@programaths2 жыл бұрын
@@mojacodes a xor a 0 So, xor need a constant. Eg: not a 1 xor a. Nand work without constants, only non inverted inputs. So, nand does it better ^^
@mojacodes2 жыл бұрын
@@programaths hmm can you show me a not gate without using constants, emulated using NAND?
@programaths2 жыл бұрын
@@mojacodes a nand a not a
@mojacodes2 жыл бұрын
@@programaths great! you've converted me into NAND-ism! All Hail the Great NAND! lol
@hugo50972 жыл бұрын
Really good video, really like the way you present everything with the animations. Keep it up!
@MuzycznaUczta2 жыл бұрын
Excellent video! I'm experienced computer scientist, and this explanation is just perfect, especially final conclusion that all computations can be done with one kind of logic gate, which is obvious for some of us, but sometimes hard to explain. Your conduct of explanation is just perfect.
@koohii33012 жыл бұрын
Brilliant video, thanks Creel for your effort. Some time ago I also watched and studied your entire (newer) playlist of assembly, I like the way you explain topics!
@JimTheScientist2 жыл бұрын
I kept saying “and gate” out loud over and over until you said Boolean and, it made me feel so accomplished to know it before it was said.
@daniel.watching2 жыл бұрын
Isn't the NAND gate the "universal" gate though. I can't imagine how you'd create a NOT operation with just AND gates.
@jgained50652 жыл бұрын
@@daniel.watching as far as I understand it, you just have one line coming in with constant power that goes straight to the output. Then you have a transistor coming off that line that goes to ground. When the transistor is off, the power goes past it into the output making a “1”. If it’s powered on, all the flow goes through the transistor and into ground making the output “0”.
@jgained50652 жыл бұрын
Diagram: /---output | +-T--ground | | | \-input p w r
@daniel.watching2 жыл бұрын
@@jgained5065 Yes, but a transistor isn't an AND gate. You can make all the gates from just NAND gates. NOT is just the input going to both inputs. An OR is just a NAND with both inputs negated (with the NOT, so 3 NANDS). AND is obviously a NOT on the NAND output. Etc You can make anything with NAND. I think you can do the same with NOR and XOR. But AND has no way to negate with just gates. Also zeroing your signal to ground sounds like a really expensive way to make a NOT gate. You're basically shorting that signal. That means anything else reading that signal will also read 0. And it probably back propagates through all the transistors. I'm not an electrical engineer but it sounds inefficient.
@JimTheScientist2 жыл бұрын
@@daniel.watching I’m not really sure what you interpreted my comment to mean but I was talking about the beginning of the video, where Boolean and is introduced.
@makkusaiko2 жыл бұрын
This is a very good way of explaining logic to some who might not know a lot about computing
@bart20192 жыл бұрын
There was nothing in this video that I didn't know before, but it's a nice refresher. A very nice refresher.
@Intermernet2 жыл бұрын
Touching ending mate. I'd also like to thank Alan. Bloody legend.
@tfritzon2 жыл бұрын
Indeed! Thanks Alan!
@sagoot2 жыл бұрын
I recommend the game Turing Complete to play around with this. In the game you start with a nand gate and gradually build a computer from it, and then you programm your computer. I had a lot of fun with it.
@kingacrisius Жыл бұрын
I've never heard of that one but I have played a browser game called NAND Game
@saiputcha1730 Жыл бұрын
Boole based his algebra on the ancient Indian system of logic, Nyaya. In fact, Boole's binary logic is a special case of Nyaya's ternary, quaternary... N-ary logic
@lepidoptera93377 күн бұрын
Bwahhhahhaa... yes, that was BOOLshit. ;-)
@Tsynique Жыл бұрын
I don't have words to describe how much I love boolean algebra.. and this presentation makes me feel very much at home.. Thanks Creel ;)
@capitalist882 жыл бұрын
Beautiful explanation. I'm familiar with logic gates and boolean algebra, but never knew that NAND and NOR are universal in this way. Just a fantastic job on this.
@pythonixed44482 жыл бұрын
Thanks mate, amazing breakdown. “NAND is all you need”
@michaelduffy74692 жыл бұрын
Is this made in blender? I really love the graphics, helps me understand the concept a lot more. Great video!
@DouglasZwick2 жыл бұрын
Excellent video! Great presentation and production, good sense of humor and all that. And, as has been mentioned elsewhere in the comments, a truly touching ending. Alan Turing was a phenomenal genius and we all owe him a debt of gratitude.
@RetiredInThailand2 жыл бұрын
I'm old enough to have worked on 'computer controlled equipment' in the 70s. elevators on Naval supply ships to be specific, and at that time the 'computer' to control these elevators was a big hard wired circuit board using discrete transistors ... to save on the number of different logic gates, which were created with individual relatively high powered transistors and 'modular' to be easily replaced when one failed, all the gates were NAND gates ... all logic circuits can be created using combinations of NAND gates.
@saeedbarari22072 жыл бұрын
The video taught me more than the past two years of CS at university
@quintrankid80452 жыл бұрын
"can compute EVERYTHING!" that is computeable. Turing proved that not everything is computeable.
@theguythatcoment2 жыл бұрын
and turing machines have never been created because no one has found a way to make infinite ram. In all seriousness if you find a new uncomputable function you might win yourself a spot in wikipedia. alongside Rice. Most things are computable unless you're trying a way to fuck with the machine's memory instructions.
@quintrankid80452 жыл бұрын
@@theguythatcoment It's true that no one can create a Turing machine, but we still speak of programming languages as being Turing Complete, even if they don't have infinite ram. An new incomputable function? How about a function that can prove that a program will write the number 5? Or 6? Or 7?
@lyrimetacurl02 жыл бұрын
But everything is able to be generated. For example most real numbers are uncomputeable but if you generate a random string of digits then you are generating an uncomputeable number.
@quintrankid80452 жыл бұрын
@@lyrimetacurl0 Why is that uncomputeable? For example, 3.27 = 3 + .2 + .007.
@joseberger7737 Жыл бұрын
@@quintrankid8045ry listing every number between 0 and 1, there are infinite and with most your computer is gonna run out of ram for that number only
@phyniffer2 жыл бұрын
Wonderful and informative video as always, thank you for taking your time to do this.
@tejonBiker2 жыл бұрын
This reminds me the digital electronic class and fpga class at university, good memories, thanks for the video
@Bobbias2 жыл бұрын
Now of only someone could explain abstract algebra/group theory with this level of clarity :)
@WhatsACreel2 жыл бұрын
That's a fine idea!! I do love Socratica, if you've not seen their videos on the topic, they're definitely worth a watch! I would love to make videos on that. Not sure when tho. Thank you for watching, have a good one :)
@Bobbias2 жыл бұрын
@@WhatsACreel oh, I have not heard of them. I'll definitely have to check them out. I've been self learning that stuff after Haskell's heavy usage of abstract algebra concepts introduced me to it. The problem is that the main resources I've been using are Wikipedia and nLab... And my formal math education ended around pre-calc, so I often end up in a black hole on those sites.
@camofelix2 жыл бұрын
Hey mate! Heads up, for the Phenom benchmark, I added AVX-512 options to both flops and SHR as a pull request
@WhatsACreel2 жыл бұрын
Oh that's cool! I'm not very good at keeping up with the git hub. Is there soemthing I need to do there? I did want to get back into it. Possibly upload a much larger project, 64 bits per channel raw photo editor, not sure when I'll get round to it tho.
@camofelix2 жыл бұрын
@@WhatsACreel You'd need to accept is as a merge! user name is the same. in terms of implementation, it verifies for the feature using cpuinfo and pigibacks off of the mechanism/style you used in the base functions for ease of readability. Flops is very close to your own implementation, but larger registers. the SHR uses some tricks of moving across AVX port 0/1 and port5 for the xmm,ymm and zmm registers to save on instruction latency. You can comment on the request before merging
@Tsynique Жыл бұрын
Alan Turing is the reason we are all here... on the internet.. on KZbin.. in front of our phones/computers/tables/etc... Cheers, mate!
@lepidoptera93377 күн бұрын
That was also BOOLshit. :-)
@_abdul2 жыл бұрын
Mr. Creel, Thanks Mate, You're Amazing.
@rubixtheslime2 жыл бұрын
This isn't a criticism, more of a continuation. While the fact that computers can be conducted entirely out of NAND gates is impressive, my favorite minimal Turing complete system would have to be the SK calculus. It's based on lambda calculus, which played a crucial role in showing the usefulness of Turing machines. But SK calculus breaks it down even further into simply two combinators (aka functions): K, the constant function constructor: K x y -> x S, the branch constructor: S x y z -> (x z) (y z) That's it. That's Turing complete. The fact that this is the case is one of the most beautiful things in computer science. For example, you can make recursion without self referencing: Y f -> f (Y f), where Y = S (K (S (SKK) (SKK)) (S (S S (S K (SKK))) (S (SKK) (SKK)) Of course lambda and SK calculi are not really able to be implemented directly in hardware the same way NAND is able to, but computers were not originally a physical concept. In a way, NAND is the face of minimal turing completeness on the hardware side, while SK is the face of minimal turing completeness on the software side.
@rustycherkas82292 жыл бұрын
Nice! Takes me back to classroom days when, with paper & pencil, we used '•' for AND, '+' for OR and bars over top for NOT... Fun to swap things around like: NOT(a) • NOT(b) == "a NOR b"... Figuring out XOR was something special...
@MrMycelium2 жыл бұрын
Great video, I love the energy and the teaching style! Keep up the great work!
@pedrodesanti62662 жыл бұрын
i love when i found videos that i know that i will return for years, good job
@TerjeMathisen2 жыл бұрын
I was watching for the first 17 minutes, all the time expecting you to show that the NOR (or NAND) gate is all you need, and then just a few seconds later you actually got there. :-)
@JerryThings2 жыл бұрын
I'm always happy to see your video pop up into my feed :))
@mr.bulldops76922 жыл бұрын
The AR presentation is absolutely sick!
@jamesabber78912 жыл бұрын
Great video explaining boolean algebra. I began studying boolean algebra in grade 7. This, and some other mathematics topics I was looking into at that time, drove my math teacher insane. She had gotten used to me returning the math exercise book we were given at the beginning of each school year the day after I received it with all questions solved since 4th grade. But now I was above her grade, and she could no longer answer my questions. Boolean algebra got me interested in computer science, so I studied computer science and math at university. But since you mentioned that this can compute everything, please make a follow-up video showing how it can compute the halting problem :)
@jarikosonen40792 жыл бұрын
Yes. Its needed in building electronic machines or also in programming. In electronic design it is needed to know how its made of transistors - and some cases it can be hard challenge.
@darske12 жыл бұрын
This brings me back a lot of memories makking circuits withh just nand gates. It saved space since a single chip comes with 4 or more nand gates, while doing "and, or, and not" would require at least 3 chips. The nor gate is universal too :P
@MDNQ-ud1ty Жыл бұрын
In fact, all one needs is a nand gate to compute all logic. ALL computation including that in your brain can be done with a simple nand operation(of course in immensely complex expressions).
@mullergyula41742 жыл бұрын
Really liked the ending.
@mikesbasement69542 жыл бұрын
Great video! Was starting to expect to see Karnaugh maps :D
@redsmith99532 жыл бұрын
Interesting, make me remember about the Karnaugh map's which not only compress but also you can solve any complex combination of logic gates arrays using only one type of gate AND, nice to see another of your interesting videos!
@phovos76182 жыл бұрын
Cheers, mate. Rockin' viddy. I can feel my brain much more than usual rn.
@realcygnus2 жыл бұрын
Superb ! Brings me way back to 1st learning digital.
@Zman20242 жыл бұрын
Nice to see another video creel, Keep up the good work!
@hinzster2 жыл бұрын
And this is the reason that the very first of the 74-series of TTL chips, the 7400, is exactly that. Four NAND-gates on a chip. Genius!
@tomysshadow2 жыл бұрын
It's weird to see operations that I have come to intuitively learn how they work, broken down in great mathematical detail like this, and describing behaviours I know to be true from hands on experience but had never seen explained this way. Interesting video
@samuraiflack38802 жыл бұрын
wait... you're that aussie guy who makes great videos. i didn't know you were back!
@idontwantahandlethough2 жыл бұрын
Oh man... this reminds me of when I took a logic class in college. The professor was brilliant but had a _super thick_ Indian accent. So in a class about zero's and one's, I had a professor who could pronounce neither 'zero' or 'one'. On top of that, we had randomly assigned "lab" partners... and mine was a Korean dude who spoke almost literally zero English (cool dude though! We pretty much just smoked weird foreign cigarettes and communicated through gestures and math lol). That semester was an absolute nightmare. I think I got a B, but that was by far the hardest class I've ever taken. Makes much more sense the second time around, honestly. Great video btw, I'm subscribing :)
@xyzct2 жыл бұрын
Magnificent presentation. Thank you, sir!
@furyzenblade35582 жыл бұрын
Missed your videos, they're great!
@eljashyyrynen47872 жыл бұрын
Wow what a channel :) you got a new sub!
@stancostin2 жыл бұрын
Great video! You made me love again computer programming :D
@WhatsACreel2 жыл бұрын
Oh, that's great, cheers for watching! :)
@phasm422 жыл бұрын
You can read the output column as a number and use that number to uniquely identify a function by number. E.g. if the bottom row is MSB, AND is function 8, TRUE is 15, OR is 14, etc.
@ncot_tech2 жыл бұрын
This was a nice and ... umm ... logical explanation of how this all fits together. Very complete. If Boolean logic blows your mind, wait until you see FPGAs where you can define hardware, using software, by literally writing out giant boolean expressions.
@bettercalldelta2 жыл бұрын
The god is actually just NAND.
@marsvandeplaneet77862 жыл бұрын
Nice video. At school, we also learned to use Karnaugh diagrams.
@hell0kitje2 жыл бұрын
You animation skills are so good as programming!
@BryndanMeyerholtTheRealDeal2 жыл бұрын
Model for all the cubes in video?
@alan2here2 жыл бұрын
fantastic episode :) ⭐️⭐️⭐️⭐️⭐️ I'm getting the impression theres "dice info-anim renderer pro" or something out there somwhere. I've seen this exact animation style before.
@WhatsACreel2 жыл бұрын
Ha! Yes, it's Blender 3D :)
@ghostlucian122 жыл бұрын
it is much simple to use karnaugh maps, to simplify the truth table into simple mathematical operations especially when the number of bits are increased.. Another way is to simplify the truth table, select the rows where outputs are 1 and add them for example XOR gate: A B O 0 0 0 0 1 1 1 0 1 1 1 0 So what we notice is A = 0 and B = 1 outputs 1 or A = 1 and B = 0 outputs 1, we can translate the function above into: O = A'B+AB', this can be also noted O = (~A)&B | A&(~B) If the output function is too big, it can be simplified using simple math, example OR Gate. A B O 0 0 0 0 1 1 1 0 1 1 1 1 O = A'B+AB'+AB = A(B+B') + A'B = A + A'B =A+B A+A' = 1 A+A'B = A+B A' = ~A AB = A&B A+B = A|B
@krumpy82592 жыл бұрын
Incredible video, thank you!
@JulianStokesIt Жыл бұрын
That all stuff was thought about before we had whizzy silicon things just blows my mind. I wonder if Boole had half an inkling as to the true possibilities his ideas would unleash?
@lepidoptera93377 күн бұрын
Logic has nothing to do with computing. All of this comes from finite set theory.
@danbhakta2 жыл бұрын
The button or switch that toggles the power state of a computer (off or on) is the fundamental bit.
@cparsec55242 жыл бұрын
Creel is the Steve Irwin of Computer Science
@WhatsACreel2 жыл бұрын
Crikey!! :)
@grahamking91212 жыл бұрын
Fun video, lively and clear presentation! But - did I hear correctly?! - Charles Babbage did not use 'valves & tubes & all kinds of craziness': his Difference Engine was purely mechanical, with gears & levers. And let's never forget the pioneering work of Ada Lovelace!!
@tomascrhonek2 жыл бұрын
Great video! Glad to have you back. How long did it take you to model this in Blender?
@WhatsACreel2 жыл бұрын
Cheers mate! I didn't time it, 100+ hours all up for this vid. That includes all the modelling, rendering, editing and sound and that. It's slow going that 3D. Defo fun, but veeeerrryyyy slow. I will probs take a break from straight 3D for while and do some more coding. So I can get some more vids out in a reasonable time frame. Anywho, cheers for watching, have a good one :)
@BryndanMeyerholtTheRealDeal2 жыл бұрын
The .notdef's at 3'54?
@jeremypnet2 жыл бұрын
4:14 Babbage wasn’t using “valves and tubes”. The Difference Engine was purely mechanical. The Analytical Engine would have been too.
@HowardCShawIII2 жыл бұрын
Had to pause and come see if someone made this comment. Spot on! However, while the Difference Engine was made of gears and rods, not valves and tubes (vacuum tubes came in 1904), there is still some potential validity, as he could possibly be referring to steam valves and copper tubes. Given that had the DE actually been completed and put into operation it would likely have been operated by steam, as indicated by his purported quote: "I wish to God these calculations had been executed by steam." Check out this steam-driven 4-column difference engine: kzbin.info/www/bejne/qmnEip6lrJJ5rJo Still, the engine itself was gears on rods, with carry arms - purely mechanical, as you say.
@williamgraham24682 жыл бұрын
The term I learned was "complete base", rather than "universal". My book recommendations: 1) The Turing Omnibus, A.K. Dewdney. 2) Bebop to the Boolean Boogie, Clive Maxfield.
@SebastianHasch2 жыл бұрын
Nice video, really wish I had seen this in my computer science class😂
@the_allucinator2 жыл бұрын
It gets more interesting when you discover what a Universal Construction is. (Category Theory)
@brightblackhole24422 жыл бұрын
15:00 you could also use a karnaugh map so you don't have to deal with that huge equation
@mcspud2 жыл бұрын
Creel you mad man, another excellent video. Come to Victoria so we can grab a beer
@abhinavraj84792 жыл бұрын
Great video!! Loved the content. Extremely curious about the prime gate you mentioned @13:53, is it just a odd detector or does it work with binary primes?
@mojacodes2 жыл бұрын
it only works with numbers upto 7, or if you allow wrapping, it outputs 1 for every 8k + p, where p is prime.
@Muhammed_English3142 жыл бұрын
@@mojacodes I knew this was absurd or wouldn't work for all numbers
@Rudxain2 жыл бұрын
This reminds me of the Esolang named "FlipJump", it's more simple than Brainfuck but still Turing-Complete, amazing
@kcaz642 жыл бұрын
Patreon is the platform. Patrons are supporters.
@lordadamson2 жыл бұрын
I don't need food. I don't need water. All I need is NAND.
@phasm422 жыл бұрын
I used that (A&f(x)) | (~A&f(x)) trick to do conditional subtraction in a long division circuit I was emulating recently 😅
@doudoud822 жыл бұрын
Before you transited to Allen Turing you remind me of lambda calculus in general where it can do everything also with the S K logic. PS: turning machines and lambda calculus are equivalent XD quite the relationship there.
@ruffianeo34182 жыл бұрын
Once you arrive at Alan Turing, I think also Alonzo Church deserves a shout-out for the equally powerful Lambda Calculus. But hopefully, you will do that in a future video.
@nathanaeltrimm27202 жыл бұрын
Can I get a program to compile programs into nands? I bet it exists
@K9Megahertz2 жыл бұрын
Good stuff! Just curious, what did you animate this in?
@WhatsACreel2 жыл бұрын
Cheers mate! It's Blender 3D. Great program!! :)
@K9Megahertz2 жыл бұрын
@@WhatsACreel Awesome! Though that it might be. Appreciate the confirmation!
@ny3dfan7812 жыл бұрын
No tubes or valves in Babbage’s devices, since they did not exist then.
@az-kalaak62152 жыл бұрын
wow this is insane I was wondering though, does this mean we are still using only 3 instructions machine, or did the firm making them implemented "shortcuts", like implementing a xor, a nor, a nand... Or do they still use the 3 instructions even to create their shortcuts? I am pleased to see another video of you, I was starting to think you were gone from youtube!
@WhatsACreel2 жыл бұрын
I think hardware manufacturers use a lot of different logic gates together to make a CPU. You can get a thing called like a NAND gate array or something. They certainly rely heavily on the magic of NAND! But most hardware will be implemented using a bunch of different logic gates. Defo didn't leave KZbin :) I'm just rather slow.... It is nice to see you all again anywho, and thanks for watching :)
@Tumbolisu2 жыл бұрын
Modern machines are made using either only the NAND or only the NOR gate. Just one of these two can simulate all boolean operations, and therefore is enough to build a whole computer with. The main reason for doing this is to make mass production easier.
@DFPercush2 жыл бұрын
I'm not an engineer at Intel or anything, but looking at some old 286 scans, I think they use a mix of various gates, mainly because every gate has a delay. If you had to use 3 NAND gates to make an OR, it would be 2 or 3 times slower. They'll use "wire gates" which are simpler than the versions you can buy on standalone chips, and the difference is that the standalone gates can sink or source current, in other words, a 0 will actually pull down any other voltage to a logic low, and give a place for the current to go. Wire gates don't do that, they're just simple traces with transistors either in series for AND, or parallel for OR, that can open or close the circuit to allow the voltage to get through. You can get away with that when you control everything else about the circuit around it. Using a mix of gates doesn't really hurt mass production, it all goes into the photo mask. Now if you're talking about programmable logic, like FPGAs, those are probably NAND only, because they have to adapt to whatever is needed. And for prototyping, it's a lot easier to keep a bin full of NAND chips rather than 7 separate gate types that you'll run out of, so it's useful to know how to convert between various logic ops. There might be a stage of CPU design where things are tested on NAND only logic, but in the final production you want as few delays as possible.
@Tumbolisu2 жыл бұрын
@@DFPercush I was told that NAND/NOR gates are also prefered because the NOT-ing of the signal at every step will give it little boosts, making it less likely for the energy to dissipate into resistance heat.
@DFPercush2 жыл бұрын
@@Tumbolisu That's a new one on me. I'll have to think about that. (Warning, long stream of conciousness ahead) I guess if you have long wires and high clock speeds, the parasitic capacitance could cause issues, but boosting the voltage along the same length of wire is only going to increase power dissipation, so I'm not sure how that's supposed to help. Unless the wire is long and thin enough to drop the voltage below a logic low. But I can't imagine that happening in the tiny span of a silicon die. What does makes sense though, is if you have a signal that's normally high, that you need to transmit over long distances, it might be better to invert it at both ends so the wire is low most of the time. That would help in TTL logic (bipolar junction transistors), but CMOS transistors / mosfets don't really pass that much current, all they have to do is statically charge the gate. And usually those gates would be close together anyway. It's really the capacitance of the lines that produces most of the heat, and if things are constantly switching on and off really fast, inverting it doesn't really save you anything. In a steady state, they're basically an open circuit, whether it's a 1 or a 0. I dunno, doesn't make sense to me, but I'm curious if there's something I'm missing.
@MrRyanroberson12 жыл бұрын
Along with NAND are the lesser known alternatives: NOR (a nor a = not a) AND-NOT with ONE (1 and not a -> not a) OR-NOT with ZERO (complementary to &~ with 1)
@annexiota2 жыл бұрын
so you're saying instead of a processor, just need a bunch of multiplexed and demultiplexed NAND gates and registers including the addressing registers for the muxing, and to write an x86 emulator, compiler and command line interface exclusively in nand expressions then write an OS with the larger selection of functions other than nand that get compiled as nand expressions by the compiler, then use it as normal.
@markmanning29212 жыл бұрын
there are ways of explaining simple things that make them almost impossible to understand. but there are also ways of explaining complex things in ways that make them trivial to understand.
@waaaaaaah51352 жыл бұрын
This is a really great video! I wonder if the universe is built out of NAND gates... 🤔
@Kenjuudo2 жыл бұрын
Then what are _those_ made out of? You're just avoiding the problem, not solving it.
@waaaaaaah51352 жыл бұрын
@@Kenjuudo More NAND gates
@Kenjuudo2 жыл бұрын
@@waaaaaaah5135 Infinite regression.
@waaaaaaah51352 жыл бұрын
@@Kenjuudo Infinite NAND gates
@angeldude1012 жыл бұрын
If it's not made of NAND gates, then it's probably made out of NOR gates instead (which are equally universal).
@coalfpv2 жыл бұрын
Apparently, x86 "mov" instruction is also all you need (with similarly esoterically complex overhead). Some silicon uses only NAND logic, and aside from the gate overhead, there isn't really a performance penalty.
@harumiohana9062 жыл бұрын
Thanks mate!
@mskiptr2 жыл бұрын
What about Y combinator?
@PplsChampion2 жыл бұрын
all you need is nand ❤
@NOT_NativeEN_Speaker2 жыл бұрын
Amazing video! Thx for it
@leyasep59192 жыл бұрын
The multiplexer is an even more admirable universal gate !
@trk20.2 жыл бұрын
[Sees "Discrete Math"] *flashbacks to the two courses I had to take*
@traywor2 жыл бұрын
Oh boy just found this channel, this 3d animation is splendorous. However at 14:49 you missed a chance to display the playback inside the monitor.