you explain for 5 minutes the full adder (which is to easy) and you do not explained the various components (LEDs, resistors, transistors) .... excuse my terrible English :)
the adder in the end is not really a '4 bit computer' (as on the label) - 'calculator with one function' / 'logic function' would be more fitting!? (no clock --> no memory --> unable to use results and no OPCodes --> no ALU --> only add, ...)
But hey, since I wouldn't build a real 4 bit computer in hardware, I'm not complaining... just saying it...
(I would describe hardware in VHDL/Verilog, synthesize the files and put the bitmask on a FPGA board.... much easier and 50 MHz clock - or even more)
@splendens The term computer does not imply memory of any kind. It is simply a device which takes input, performs a calculation based on a given formula, and outputs the results. This 4 bit computer meets those criteria, so it is a computer.
i used to learn this in highschool,it was retarded cause the the teachers didnt know what the fuck they were saying,so i just showed up at tests,aced them and still didnt understand shit,i should have used the internet.. might have learned something
Oh I think i see, are you just taking the carry from the far right and bringing it back to the far left? I am assuming that is what you mean by cascade.
At 2:39 for the picture. The "carry in" on the far left. Why does the diagram show that it is not coming from A and B? isn't its suppose to be coming from both A and B. The diagram has loops over those and doesn't seem to be connected to a source.
the full adder give here is wrong, however it is right on your site. It does not calculate properly, let a=1, b=0, carry in=1 or 0 and it will give you a wrong answer.plz reply( i want to make it), and if you could please upload how to convert this into led output in base 10 (with diagram). Thanks
If I recall correctly, subtraction is achieved by the same process except the number system is adjusted such that pos+ has 0 for left most bit, neg- has 0 for left most bit. Correct?
Wondering if you hardware could be expanded by added a digital LED like in a clock-radio. Your leads to the individual LED could be inputed to the digital LED or am I offbase.
@jamespiperca - You could connect 7-segment LED displays to it, but if you wanted numbers to come out you would need to design a binary to decimal conversion stage to control the display.
great content however in places the music at places takes over your voice and it's hard for me to hear what you are saying. I would suggest for the future that you use a sidechained compressor to duck the music abit when you speak so it never over takes.
Hi, this is great, i liked this video very much but where can I find more about this, maybe a multiplier or something more complex, also can you convert output to b10 and display it on an LCD (or LED matrix) or is this too complex
Very nice, but as others pointed out this cannot, under any circuimstances, be called a "computer". Leaving cute wordplays with the verb "compute" aside. This is only a small part of the ALU of a computer.
I'm trying to build this computer, I'm at the soldering part. In the LED section of the circuit, your schematic shows the BC547C transistors as having the emitter connected to the 10KOhm resistors and the collector to the LED, however, in the video, your computer shows those transistors inverted (emitter going to the LEDs). Is there a mistake in the schematic, or are you using PNP transistors for that section as opposed to the schematic?
@empyrionin - All the transistors are NPN. In the LED circuit the transistors are sinking the 9Vs from the LEDs to ground. The LED is connected to the collector of the NPN and the emitter is connected to ground; this is as what is shown in the schematic.
This is NOT a computer. This is a 4 bit adder. There is a huge difference. You good sir, are missing ram, rom, a command decoder, among many other important pieces.
Computer is a programmable machine designed to automatically carry out a sequence of arithmetic or logical operations.
In electronics, an adder or summer is a digital circuit that performs addition of numbers. In many computers and other kinds of processors, adders are used not only in the arithmetic logic unit(s), but also in other parts of the processor.
You should read encyclopedia or something like that, before bragging here
@Zknight7126 - The first carry is not really required; it was easier to leave it in though since then the PCB pattern for the 4 adders could just be copied 4 times rather than designing one specifically for the first adder.
@simoninns As far as I know, you can implement subtraction by using another digit (0 addition, 1 subtraction, a rudimentary decoder). When it is on, the second number is inverted with XNOR gates and the first carry is used to add 1 to the number to complete the 2s complement and then perform the addition.
The full adder you show in the video is different than the full adder in the transcript that you linked. I don't have much experience with logic gates but it seems as though the one in the video doesn't work. If your input for A is 1 and your input for B is 1 with a 0 for the carry in, the sum should come out to 1. Every time I work it out the sum comes to 0.
Diodes for the OR gates are easier, IMO, but require more explanation, so meh. That's a really nice job you did there explaining it. This video can help SO many people, I'll be sharing it with friends! :)
@simoninns I think if you explained the Karnaugh Map, you'd have viewers less lost in how you arrived at the boolean functions. Maybe you could also use it to simplify your full adder and have less wiring to do so that way you can pave the way to do something bigger, like an 8 bit or 16 bit adder. :)
Great stuff. Need to require these type of lessons in the schools. Too many young morons saying they know about computers when they mean they know how to click through a website. Learn some real computing, please.
i did something like this in my computer internals class but instead of leds we used 7 segment displays, it was a really fun class to be doing this kind of stuff
The entire procedures might be a little bit complicated, but it is actually fantastic! Great job! I will try to make my own! Thanks for your invaluable help!
Wow, very impressive work, congratulations ! A litlle question : what's happening if you try to add 12+6 (or anything with a reasult greater than 15) ? I guess it will overflow the... hum, "power" of this calculator but what the LED would indicate ?
@SuperBunkerbuster - A 4 bit adder has 4 bits of output and 1 carry bit so you can't overflow it with 2x4 bits of input: 1111 (15) + 1111 = 11110 (30)
I must note that adding illustrated here is one out of like 10 functions basic Arithmetical Logical Unit does. ALU is one of the essential components of Central Processing Unit, but it cannot do much on its own and relies on the rest of CPU parts for getting data and sending it to the right place. CPU is one of essential components of the computer, CPU requires at least storage(RAM, HDD, SSD) to operate and GPU, Keyboard, Display etc. to display something.
I still dont understand the not gate... How can information be inverted? What does it mean, are the atoms stopped from moving forward in a circuit from the point the NOT gate is applied? And vice versa?
@stri8ted - If you follow the link in the description you will find a complete transcript of the video complete with diagrams and explanations; glad you liked the project!
I've being looking for a video like this for years. I've always searched for "How to make a computer", but I got was videos of teenagers assembling computers with already-made parts. Is not until recently that I look up transistors that I finally found this video on the suggestions. Anyway, thanks for sharing.
I expect within 20 years you'll be making something called an 'iPad' :o)
This is a really refreshing video - always good to reacquaint yourself with logic gates. I used to program micro computers 30 years ago and recently thought about getting into PIC processors but logic gates leave me cold - Where do you start? From that point of view this video is priceless!
Could you please explain part of the diagram of the Full adder at 2:35, if you follow the line straight from the carry in, it splits and one is inverted, they both then lead to an And gate. What situation does this And gate operate, as I must be missing something on how the carry can be simultaneously on and off? The diagram provided in the link for the Full adder is different. thanks in advance.
@normskilight - many moons ago (and now buried deep in the comments) I mentioned that there were a couple of mistakes in the diagrams show in the video. The latest (and hopefully completely correct!) diagrams can be found on my website. Just follow the link in the video's description. If I'd had know just how many views this video was going to get I would have been *way* more careful :) You never can tell I guess!
@normskilight I noticed that too. I tried to work out what would happen with different inputs using his diagram for the full adder. It doesn't work out for me. If your inputs are A = 0, B = 1, and carry in = 0, the sum comes out to 0. it should come out to 1.
@nignocka the video maker responded to that question, he informed me that there is an error in the video, however if you see the link provided in the description all instructions are correct.
you explain for 5 minutes the full adder (which is to easy) and you do not explained the various components (LEDs, resistors, transistors) .... excuse my terrible English :)
Soncioz 1 day ago
the adder in the end is not really a '4 bit computer' (as on the label) - 'calculator with one function' / 'logic function' would be more fitting!? (no clock --> no memory --> unable to use results and no OPCodes --> no ALU --> only add, ...)
But hey, since I wouldn't build a real 4 bit computer in hardware, I'm not complaining... just saying it...
(I would describe hardware in VHDL/Verilog, synthesize the files and put the bitmask on a FPGA board.... much easier and 50 MHz clock - or even more)
Ciddyism 1 day ago
@splendens memory is optional.
mrmerino101 2 days ago
What texture pack is this?
johnny17616 2 days ago
Comment removed
johnny17616 2 days ago
I was expecting tutorial how to make computer in MineCraft :D
thebel89 2 days ago
minecraft
poonageguy 2 days ago
I watched the whole video,but you lost me second 1....
dany080 4 days ago
This method doesn't work in minecraft apparently :( But my own method works pretty well and more compact XD
Freaky99100 4 days ago
Now use this computer to make the same computer in minecraft... Then use the virtual computer to do the same thing. COMPUTERCEPTION!!!
MegaIhateit 5 days ago
Good work, but this is not a computer, this is a calculator. Where is the ram memory?
splendens 5 days ago
@splendens The term computer does not imply memory of any kind. It is simply a device which takes input, performs a calculation based on a given formula, and outputs the results. This 4 bit computer meets those criteria, so it is a computer.
nychold 5 days ago
Now teach me how to make a quad core cpu
psickoO 6 days ago
i used to learn this in highschool,it was retarded cause the the teachers didnt know what the fuck they were saying,so i just showed up at tests,aced them and still didnt understand shit,i should have used the internet.. might have learned something
drinkbudyXD 6 days ago
Will it blend?
CactusbIah 6 days ago
this is really usfull for mincraft omg nice thx a ton simoninns
DamiontheSpawn 1 week ago
Is this narrated by Tony Blair???
petehuws 1 week ago 2
Oh I think i see, are you just taking the carry from the far right and bringing it back to the far left? I am assuming that is what you mean by cascade.
max137vzx 1 week ago
At 2:39 for the picture. The "carry in" on the far left. Why does the diagram show that it is not coming from A and B? isn't its suppose to be coming from both A and B. The diagram has loops over those and doesn't seem to be connected to a source.
max137vzx 1 week ago
at 2:35 i need to take a break. Wow a lot of information very fast. Great video. I will be replaying over many many times.
max137vzx 1 week ago
Comment removed
max137vzx 1 week ago
And what the hell dose this video have to do with minecraft
MrROFL92 1 week ago
the full adder give here is wrong, however it is right on your site. It does not calculate properly, let a=1, b=0, carry in=1 or 0 and it will give you a wrong answer.plz reply( i want to make it), and if you could please upload how to convert this into led output in base 10 (with diagram). Thanks
youseftube1sfan 1 week ago
do you know how this could be applied to an IC?
ahmednematallah 1 week ago
The question is. Why would you make it?
Geno11116 1 week ago
Lol this sounded like some National geographic documentary xD
MRxManus 1 week ago
I'd call it a simple calculator, not a computer
kawless 1 week ago
play COD on it
WinXPwhiz 1 week ago
@WinXPwhiz Why would he downgrade it?
CODMarioWarfare 1 week ago
can it run basic (from commadore 64)
TheChevroletnova 1 week ago
play cod on it
KaiOfBloodz 1 week ago
is there a part list somewhere? i'm not sure what kind of transistors to buy. would this work on a breadboard?
aganju 1 week ago
@aganju - Click on the link in the video description for more details of the project.
simoninns 1 week ago
If I recall correctly, subtraction is achieved by the same process except the number system is adjusted such that pos+ has 0 for left most bit, neg- has 0 for left most bit. Correct?
Anyone know of any links on this?
jamespiperca 1 week ago
@jamespiperca - Head over to wikipedia and search for 'two's compliment' - that's what the technique is called
simoninns 1 week ago
@simoninns Thanks for the reply.
Wondering if you hardware could be expanded by added a digital LED like in a clock-radio. Your leads to the individual LED could be inputed to the digital LED or am I offbase.
jamespiperca 1 week ago
@jamespiperca - You could connect 7-segment LED displays to it, but if you wanted numbers to come out you would need to design a binary to decimal conversion stage to control the display.
simoninns 1 week ago
@jamespiperca uh... i can't... (brain explodes)
leon2550 1 week ago
@jamespiperca
This is stupid, I am curious as to where does the Or transistor connect to? More importantly where is the information stored or its final location?
max137vzx 1 week ago
@jamespiperca
Also what file do i use to open the schematics for your project?
max137vzx 1 week ago
Great vid. It's been 20+ years since I studied this in university, but it came back.
jamespiperca 1 week ago
I made a 4 bit memory chip. from bigdatt69 if you have any question i can give you answers! matthewlawrence25@yahoo.com
bidaddt69 2 weeks ago
It's easier to use redstone
Nullatrum 2 weeks ago
This has been flagged as spam show
Was this made from npn or Pnp transistors? Or perhaps both?
thatguyofmanythings 2 weeks ago
Was this made from npn or transistors? Or perhaps both?
thatguyofmanythings 2 weeks ago
to much mats for me
joazinho9099 2 weeks ago
great content however in places the music at places takes over your voice and it's hard for me to hear what you are saying. I would suggest for the future that you use a sidechained compressor to duck the music abit when you speak so it never over takes.
insonicbloom 2 weeks ago
whats the music?
geekforlifevandc 2 weeks ago
This has been flagged as spam show
Sorry but the full adder diagram is wrong
wikipedia (dot) org /wiki/Adder_%28electronics%29
I can draw a diagram if you want and upload it here
still a great video
please we want to know more, and please make it of this type, simple and easy for beginners
or at least tell us how or where to find more
ahmednematallah 2 weeks ago
8O
pinche1994 2 weeks ago
Hi, this is great, i liked this video very much but where can I find more about this, maybe a multiplier or something more complex, also can you convert output to b10 and display it on an LCD (or LED matrix) or is this too complex
ahmednematallah 2 weeks ago
What programs can I use on a mac to open your schematic and pcb work? If mac is not possible can you refer me to a windows program?
noodlescracher28 2 weeks ago
@noodlescracher28 - The files can be opened with expressPCB and expressSCH.
simoninns 2 weeks ago
how many bits does a modern computer have ?
Skypatter 2 weeks ago
@Skypatter 64
ahmednematallah 2 weeks ago
Very nice, but as others pointed out this cannot, under any circuimstances, be called a "computer". Leaving cute wordplays with the verb "compute" aside. This is only a small part of the ALU of a computer.
nuclearthelab 2 weeks ago
Will this run Crysis?
STULiAM 3 weeks ago 23
I want to use this with a QuadCrossfire 7970 configuration, will it bottleneck ?
FadeToBlack181 3 weeks ago 32
@FadeToBlack181 you mean will the Quadfire config bottleneck it
ahmednematallah 1 week ago
@ahmednematallah Nope, literally QuadCrossfire, as in Octafire, as in 8x7970s, though I may have to glue on some extra PCI slots.
FadeToBlack181 1 week ago
@FadeToBlack181 Or even better an octafire of 7990s, you'll have to glue all the PCIe Slots, You're making your own computer,
I just wish the author doesn't think we're making fun of his computer
It's a great video and I really understood a lot of things about transistors from it
ahmednematallah 6 days ago
Really cool video for just your average person!
This really helps uncover the mystery of the computer and how some little scraps of metal can count
ostapslobodian 3 weeks ago
You know, its kinda funny, how I learned about logic gates, adders and cpus in minecraft :p
RedVim 3 weeks ago
where can i buy the parts (circuit board etc.)?
GrettyBoyCustoms 3 weeks ago
What language is this?
95uptheirons 3 weeks ago
@95uptheirons
English?
If you are talking about programming language, then it doesn't have one, it just uses binary
pufixas 3 weeks ago
this is cool but; it's more like an adding machine to me.....
JDepptastic 3 weeks ago
@JDepptastic an adding machine IS a computer... look up "compute"
RedVim 3 weeks ago
I'm trying to build this computer, I'm at the soldering part. In the LED section of the circuit, your schematic shows the BC547C transistors as having the emitter connected to the 10KOhm resistors and the collector to the LED, however, in the video, your computer shows those transistors inverted (emitter going to the LEDs). Is there a mistake in the schematic, or are you using PNP transistors for that section as opposed to the schematic?
empyrionin 4 weeks ago
@empyrionin - All the transistors are NPN. In the LED circuit the transistors are sinking the 9Vs from the LEDs to ground. The LED is connected to the collector of the NPN and the emitter is connected to ground; this is as what is shown in the schematic.
simoninns 4 weeks ago
Simon that's a really amazing video thank you very much. Very interesting to learn how transistors and gates work.
CubeRepublic 4 weeks ago
This is not a computer. Where's the program?
jsthm52 1 month ago
Can you hook me up whit some sort of a kit maybe?
Or at least the circuit board?
Thanks for the video btw.
waralotHD 1 month ago
the real issues is, how to use it?
cjoenic 1 month ago
Why am I reading this guys comments in his voice?
laeinc 1 month ago
Oh, never mind. I figured it out now. Lol!
chunkymonky94 1 month ago
I don't understand how you are counting in binary, please help me!! -.-
chunkymonky94 1 month ago
Very nice video!
ToyPitStop 1 month ago
you r a geniuos !!
Itnecap 1 month ago
This is NOT a computer. This is a 4 bit adder. There is a huge difference. You good sir, are missing ram, rom, a command decoder, among many other important pieces.
jrgreene89 1 month ago
@jrgreene89 - 'compute' (verb): to calculate an answer or amount by using a machine - From the Cambridge English Dictionary
simoninns 1 month ago 38
@simoninns
this is not a von neumann computer
laputahayom 4 weeks ago
@simoninns Well, if you're being like that, computers used to be people who computed.
austinlcurr 4 weeks ago
@simoninns
'Compute' is not 'computer', a computer is a programmable machine designed to automatically carry out a sequence of arithmetic or logical operations.
Correct me if i'm wrong
pufixas 3 weeks ago
@pufixas What do you think the first computers where? they where just ADDING machines. stupid cunt
greekpa2 3 weeks ago
Comment removed
pufixas 3 weeks ago
This has been flagged as spam show
@greekpa2
You can call it computer but its not really it.
Computer is a programmable machine designed to automatically carry out a sequence of arithmetic or logical operations.
In electronics, an adder or summer is a digital circuit that performs addition of numbers. In many computers and other kinds of processors, adders are used not only in the arithmetic logic unit(s), but also in other parts of the processor.
You should read encyclopedia or something like that, before bragging here
pufixas 3 weeks ago
@jrgreene89 the self ownage is sad to read.
ThumbsUpBrah 1 month ago
@jrgreene89 Burned. xD
xXDarkMidnightSunXx 1 month ago
@jrgreene89 I think you have the point. There is a lot more than just an adder in a computer
ndpratas 1 month ago
What does the first carry in do?
Zknight7126 1 month ago in playlist Favorite videos
@Zknight7126 - The first carry is not really required; it was easier to leave it in though since then the PCB pattern for the 4 adders could just be copied 4 times rather than designing one specifically for the first adder.
simoninns 1 month ago
@simoninns As far as I know, you can implement subtraction by using another digit (0 addition, 1 subtraction, a rudimentary decoder). When it is on, the second number is inverted with XNOR gates and the first carry is used to add 1 to the number to complete the 2s complement and then perform the addition.
empyrionin 4 weeks ago
@Zknight7126 hi z
Sneak4000 3 weeks ago
@Sneak4000 Hi Sneak. You found this too?
Zknight7126 3 weeks ago
This could be helpful for building a computer in Minecraft, specifically to calculate things.
Zknight7126 1 month ago
my new school laptop
enderzand 1 month ago
Can I run CoD on it?
TheCentralServices 1 month ago
@TheCentralServices i think the -9 version
TheChevroletnova 1 month ago
How much would you say was spent on this computer?
noodlescracher28 1 month ago
The full adder you show in the video is different than the full adder in the transcript that you linked. I don't have much experience with logic gates but it seems as though the one in the video doesn't work. If your input for A is 1 and your input for B is 1 with a 0 for the carry in, the sum should come out to 1. Every time I work it out the sum comes to 0.
nignocka 1 month ago
@nignocka - You're correct there are a couple of mistakes in the video (this is mentioned on the web page). The versions on my website are correct.
simoninns 1 month ago
I discovered what brain tastes like while watching this as mine dribbled down my throat!
10yrubikscubeguy 1 month ago
Diodes for the OR gates are easier, IMO, but require more explanation, so meh. That's a really nice job you did there explaining it. This video can help SO many people, I'll be sharing it with friends! :)
mamooth 1 month ago
@simoninns I think if you explained the Karnaugh Map, you'd have viewers less lost in how you arrived at the boolean functions. Maybe you could also use it to simplify your full adder and have less wiring to do so that way you can pave the way to do something bigger, like an 8 bit or 16 bit adder. :)
man4857 1 month ago
Will it run crysis?
gregerdaniel 1 month ago 2
@gregerdaniel Probably not, the graphics card might not be up to par.
Munymuny200 1 month ago
Great stuff. Need to require these type of lessons in the schools. Too many young morons saying they know about computers when they mean they know how to click through a website. Learn some real computing, please.
oldtwins 1 month ago
?!?! im confused u lost me when the first graphic showed :P
Photoshop211 1 month ago
can i play pokemon on it?
Redickja 1 month ago
Tell about about ROM whith flashing transistor hehe.... may be Magnetic-core memory hehe
trigger register ram.... nostalgia
did you know, subtraction also use adder and only adder ? hehe
dinetsandrew 1 month ago
Building it in Minecraft with the help of this video :D
UprootedEagle 1 month ago
This is a "boorish" video. =p
leighstephens74 1 month ago
now lets make it in minecraft
skatingrock2 1 month ago
Kjell & Kompany!!!
SuperItchii 1 month ago
i did something like this in my computer internals class but instead of leds we used 7 segment displays, it was a really fun class to be doing this kind of stuff
BrandonRDillon 1 month ago
@BrandonRDillon please tell how did you do it using 7 segment displays i have been trying for long.it would be of great help.
0987654321134 1 month ago
The entire procedures might be a little bit complicated, but it is actually fantastic! Great job! I will try to make my own! Thanks for your invaluable help!
k3xa9e7cz8b 1 month ago
Wow, very impressive work, congratulations ! A litlle question : what's happening if you try to add 12+6 (or anything with a reasult greater than 15) ? I guess it will overflow the... hum, "power" of this calculator but what the LED would indicate ?
SuperBunkerbuster 2 months ago
@SuperBunkerbuster - A 4 bit adder has 4 bits of output and 1 carry bit so you can't overflow it with 2x4 bits of input: 1111 (15) + 1111 = 11110 (30)
simoninns 1 month ago 8
the cpu can also subtraction
TheTimmyewrard 2 months ago
du meinst cpu :central processing unit aber gut :D
TheTimmyewrard 2 months ago
I must note that adding illustrated here is one out of like 10 functions basic Arithmetical Logical Unit does. ALU is one of the essential components of Central Processing Unit, but it cannot do much on its own and relies on the rest of CPU parts for getting data and sending it to the right place. CPU is one of essential components of the computer, CPU requires at least storage(RAM, HDD, SSD) to operate and GPU, Keyboard, Display etc. to display something.
ignas2526 2 months ago
This all was explained to me 15 years ago from a book at Radioshack. What ever happen to these books?
TickyTack23 2 months ago
Wohh nice really nice good work
Aspecsi 2 months ago
@XxDoubleXProductions You know, your sentence read in layman terms makes no sense but in the eye of a technician, it is understandable! Lol~
Gunbardo 2 months ago
I still dont understand the not gate... How can information be inverted? What does it mean, are the atoms stopped from moving forward in a circuit from the point the NOT gate is applied? And vice versa?
Gunbardo 2 months ago
@Gunbardo
There are two transistors within the NOT gate, one of them responds when there is no input, the other when there is. :)
8bitRemakes 2 months ago
Is this the lecture superman got when he was in the spaceship flying from his destroyed home planet.
Ibringthetruth1 2 months ago
SO....MUCH......MATH!!!
clawproductionDX 2 months ago
This is the closest Ive gotten to understanding how the stuff works. I would love to see a slowed down better explained version. Cheers.
stri8ted 2 months ago 21
@stri8ted - If you follow the link in the description you will find a complete transcript of the video complete with diagrams and explanations; glad you liked the project!
simoninns 2 months ago
@stri8ted What do you want to know?
ilikecoding 2 months ago
we use 1 or and gate and not or and gate for A1 not B1 and 1 is not 0 so I make no sence
XxDoubleXProductions 2 months ago
Kjell o Company någonting säger mig att du är från Sverige! :)
ElectricMuffinDude 2 months ago
my mind = blown.
Thanks for upload.
snomimons 2 months ago
Interesting, but the music made me dislike it and move.
murmurrer 2 months ago
This video went viral on Turkmenistan
ickieestes12r 2 months ago
people in the 1930s would love to get their hands on one of these
ActiveStorage 2 months ago
Awesome, this makes me want to build one now!
DGMRuadeil 2 months ago
I've being looking for a video like this for years. I've always searched for "How to make a computer", but I got was videos of teenagers assembling computers with already-made parts. Is not until recently that I look up transistors that I finally found this video on the suggestions. Anyway, thanks for sharing.
Pagweb 2 months ago
I expect within 20 years you'll be making something called an 'iPad' :o)
This is a really refreshing video - always good to reacquaint yourself with logic gates. I used to program micro computers 30 years ago and recently thought about getting into PIC processors but logic gates leave me cold - Where do you start? From that point of view this video is priceless!
3Deity 2 months ago
5*
hassans111 2 months ago
hey your video is great and i love it
can you tell me where can i get a schematics of a full adder and subtracter with the least number of logic gates used??
pghg022 2 months ago
Before I try.. Is it capable of running a PONG game? Even with no scoring system?
ChildsViewReviews 2 months ago
this music is scary
AdilsonAlmeidan 2 months ago
hi, what's A & B and what happens if i move my mouse or click an icon?
presa1200 2 months ago
my god. flashback to computer architecture classes in uni.
Morelloo1 2 months ago
But will it run crysis?
One4TheTechnoGuy 2 months ago 2
@One4TheTechnoGuy It can even run the Matrix.
ilikecoding 2 months ago
@ilikecoding Wow! Do you think i can run the matrix
*2x Xeon Processors
*128GB RAM
*3 nVidia Tesla C2070
*nVidia Quadro 6000
One4TheTechnoGuy 2 months ago
there is an error @1:07
1 + 1 = 0c1
yildiralp 3 months ago
WOW, it boot up faster then my iMac :)
MarkusQu 3 months ago
Where did you get that from?
TOMHCKY 3 months ago
OMG
chieftech100 3 months ago
great tutorial !
jupannrone 3 months ago
Best ever explanation of how computers work. Thanks man.
FuzzDog525 3 months ago
does he have to talk so fast and unclear? I never heard half the words he said in there... jeez
Zee96969696 3 months ago
@Zee96969696 I liked the way he talked.
larsaaaaaaaa 2 months ago
That was very cool. Thank you for sharing your knowledge.
furChrist 3 months ago
Eagle CAD works great & best if you go for 8 bits :) QC
Quaaludedude714 3 months ago
Nice.Very intresting
livekid24 3 months ago
What Software do you use for making schematics?
Mercurycartoons 4 months ago
@Mercurycartoons - I used ExpressSCH for this project, but these days I'm using Eagle CAD which is more powerful
simoninns 4 months ago 5
@simoninns like a boss
rtty21 2 months ago
Now.... Squeeze that into a 1X1 inch plastic thing XD
AwesomeFace50 4 months ago
like this if you thought this was a minecraft computer tutorials
LapZGaming 4 months ago
wow.. finally someone explains computers on a level that makes complete sense from the hardware point of view.
thanks
andruha11234 4 months ago
Could you please explain part of the diagram of the Full adder at 2:35, if you follow the line straight from the carry in, it splits and one is inverted, they both then lead to an And gate. What situation does this And gate operate, as I must be missing something on how the carry can be simultaneously on and off? The diagram provided in the link for the Full adder is different. thanks in advance.
normskilight 4 months ago
@normskilight - many moons ago (and now buried deep in the comments) I mentioned that there were a couple of mistakes in the diagrams show in the video. The latest (and hopefully completely correct!) diagrams can be found on my website. Just follow the link in the video's description. If I'd had know just how many views this video was going to get I would have been *way* more careful :) You never can tell I guess!
simoninns 4 months ago 2
@normskilight I noticed that too. I tried to work out what would happen with different inputs using his diagram for the full adder. It doesn't work out for me. If your inputs are A = 0, B = 1, and carry in = 0, the sum comes out to 0. it should come out to 1.
nignocka 1 month ago
@nignocka the video maker responded to that question, he informed me that there is an error in the video, however if you see the link provided in the description all instructions are correct.
normskilight 1 month ago
IT WOULD BETTER TO DEMONSTRATING STEP BY STEP PROCESSES WITH THE AID OF LABELLED DIAGRAMS
TheHamidakram 4 months ago
@HisMight1
Nein. Ich komme aus Australian so mein Deutsch ist noch nicht so gut.
And I don't know much about Germany lmao