Jumping, Branching, and Flags - Let's Make a Redstone Computer! #7

แชร์
ฝัง
  • เผยแพร่เมื่อ 22 ธ.ค. 2024

ความคิดเห็น • 182

  • @mattbatwings
    @mattbatwings  หลายเดือนก่อน +16

    To try everything Brilliant has to offer-free-for a full 30 days, visit brilliant.org/mattbatwings/
    You’ll also get 20% off an annual premium subscription.

    • @AN71717
      @AN71717 หลายเดือนก่อน

      so cool!

    • @Getout66
      @Getout66 หลายเดือนก่อน

      Do I make a map about building battle and

    • @swedob
      @swedob 28 วันที่ผ่านมา

      Knarfy thinks you’re a geologist.

    • @JulianKruidhof
      @JulianKruidhof 20 วันที่ผ่านมา

      I Have just subscribe

  • @SubatomicPlanets
    @SubatomicPlanets หลายเดือนก่อน +164

    I'm a programmer and game developer and this series is gold! I love understanding such low level topics like CPU architectures but most learning resources are boring or too complicated. But your videos are fun! Explaining it with minecraft really helps too! Thanks for making this series!

    • @FrightfulMC
      @FrightfulMC หลายเดือนก่อน

      I agree

    • @doodocina
      @doodocina หลายเดือนก่อน

      what language do you program in?

    • @The_real_Creepermaster
      @The_real_Creepermaster หลายเดือนก่อน

      True

    • @SubatomicPlanets
      @SubatomicPlanets หลายเดือนก่อน

      @@doodocina Mostly Python, C#, and C++

    • @doodocina
      @doodocina หลายเดือนก่อน

      @@SubatomicPlanets you love such low level topics but program in python, c#?...

  • @the_m_original
    @the_m_original หลายเดือนก่อน +41

    4:43
    quick note from me here:
    if your program counter is quite literally a counter that you can set to any time, i recommend just setting it to the jmp address -1, so when it increments, it goes to the correct address. (this preproccessing step can be done in hardware, by making an adder that adds 255 to the jmp address and having the result get stored instead of the actual address)
    7:06
    another way to solve this is, get this, implementing temporary pointers in the assembler (JMP [pointer] -> pointer: \code), which, even if gets more instructions added before the pointer, will move the pointer up.

    • @mtarek2005
      @mtarek2005 หลายเดือนก่อน +3

      or relative jump as a pseudo instruction

    • @luminas-d9w
      @luminas-d9w หลายเดือนก่อน +1

      Yeah, relative jump by an immediate is replaceable with some assembler preprocessing. But relative jump by a register values is not. It would unlock switch like branching whitch is very cool. Or jumps to a register value would basicaly unlock function calls.

  • @rtyyyyb
    @rtyyyyb หลายเดือนก่อน +45

    the 3 classic properties of trees: branches. flags. and jumping competitions

  • @MadocComadrin
    @MadocComadrin หลายเดือนก่อน +21

    It's a bit of interesting pedantry, but it's not actually Turing Complete yet. With only a finite number of finitely-sized registers, we can only decide problems in constant space, i.e. DSPACE(O(1)). But DSPACE(O(1)) is contained within the Regular Languages. Anything this computer could do that halts, a DFA could be made to at least brute-force it.
    We need memory (in an amount that varies greatly enough with the size of the input) to do better, and we'd need unbounded memory (and a way to access it) to be Turing Complete.

    • @beaverbuoy3011
      @beaverbuoy3011 หลายเดือนก่อน +1

      Oh I had no idea about the distinction, how interesting!

    • @MadocComadrin
      @MadocComadrin หลายเดือนก่อน +1

      @beaverbuoy3011 Yep, there's a whole jungle of Turing Machine constraints/extensions/variants and their links to the various parts of the computational hierarchy.
      Another good one to know is a Linear Bounded Automaton: a Turing Machine where you have a tape limited in length to some linear function of the input length, e.g. if you need n tape cells for the input, have only c*n tape cells total for some number c.
      They can only decide context-sensitive languages, and they're particularly relevant because they more practically model machines we regularly use. For example,I can't add more RAM to my PC on demand, but I can have a good guess ahead of time what the largest instance of the hardest problem I'm going to compute and make sure I have 2, 8, 4096, or whatever times the amount of RAM it needs to fit.

    • @beaverbuoy3011
      @beaverbuoy3011 หลายเดือนก่อน

      @@MadocComadrin Oh so cool! I will definitely look into it further. I haven't learned the theory behind computing, I'm bound to have a great time :D

    • @luminas-d9w
      @luminas-d9w 26 วันที่ผ่านมา

      Does that mean our computers are not turing complete? They possess finite memory.

    • @MadocComadrin
      @MadocComadrin 26 วันที่ผ่านมา

      @@luminas-d9w Technically yes (unless you count saving state when you're nearly out of memory/storage and plugging in more memory/storage as unbounded, but even then the amount of memory/storage we can make is essentially finite too).

  • @Cinnimin
    @Cinnimin หลายเดือนก่อน +10

    Parity is also a neat flag to use if you have the space for it. It is only true if the LSB is true (like the opposite of the negative flag) and can be useful in programs like multiplication :D

  • @altrightz
    @altrightz หลายเดือนก่อน +28

    Everytime matt uploads, I get smarter

  • @amynagtegaal6941
    @amynagtegaal6941 หลายเดือนก่อน +2

    About the two jumping methods.. you could also handle relative jumping in the assembler, so when you put it into the computer it's direct jumping, but in the assembler you write it the relative way, i know that there are some assemblers out there that can do exactly that, but that would technically make the assembler a compiler since it has to apply it's own logic to the program rather than to directly look up the instruction and outputting the binary equivalent

    • @creeper6530
      @creeper6530 หลายเดือนก่อน +1

      He'll probably make labels in assembly anyways, instead of addresses, so that's why he said direct jumping isn't a problem

  • @DarmiGames
    @DarmiGames หลายเดือนก่อน +2

    This is getting more and more complicated. I've had to rewatch and pause the video to understand it. Thank you for this series!

    • @jackinzbox.
      @jackinzbox. หลายเดือนก่อน +1

      Don’t feel bad about needing to do that. Between this series and his LRR series he’s basically covered all the content of a semester long Digital Systems class I had to take as a sophomore Computer Engineering major. Literally the only difference is learning the implementation medium. In this you learn Minecraft in the college class I learned something called Verilog(basically code).

    • @DarmiGames
      @DarmiGames 27 วันที่ผ่านมา

      ​@@jackinzbox.I don't feel bad for it, I'm loving the series and finallx get to understand on the hardware level, how computers work. Like I knew, there were instructions, but I didn't know, how the computers read them, etc.

  • @lucassatlher2165
    @lucassatlher2165 หลายเดือนก่อน

    Simply amazing to see branch being added!! Have you ever thought about adding "branch and exchange" as in branching to an address on a register? Keep up the good work, I'm loving the series!

  • @k98killer
    @k98killer หลายเดือนก่อน

    This is inspiring me to return to my own Redstone computer project and finally add the in-game compilers I have planned.

  • @NK-61
    @NK-61 หลายเดือนก่อน +3

    YESSSSS MATT RELEASED A BRANCHING EPISODE

  • @mrseriousv1
    @mrseriousv1 หลายเดือนก่อน +14

    VOTE MATT FOR THE AWARDS

  • @henrynagel2658
    @henrynagel2658 หลายเดือนก่อน

    I was so excited for this episode, knowing that selection would make this the real deal

  • @Imperial_Squid
    @Imperial_Squid หลายเดือนก่อน +3

    11:42 shouldn't bit shifting also set the flags? At least the zero flag since you can bit shift so far end up with zeroes in every position

  • @kylebowles9820
    @kylebowles9820 หลายเดือนก่อน +2

    I love that once the computer is turing complete it becomes about making it super convenient to program ❤
    It has to do with the complexity class, it's the self reference that causes things like Godel incompleteness, the halting problem, and more. Once you connected the ALU and memory (that is capable of self reference) to the program counter (evolution operation) it went essentially transcendental (mathematically). Notice the system that breaks those constraints can compute anything from the subset that need them. What constraints will we break next? This is all theoretical progress to be made.

  • @mgmn6102
    @mgmn6102 หลายเดือนก่อน +1

    instead of direct or relative jumping, u could do it as in the 6502 with keywords that get compiled to the line theyre defined in, same as u can set keywords as variables

  • @PSP_24
    @PSP_24 หลายเดือนก่อน

    I'm taking an assembly and architecture class at the same time as this series, it's amazing how well you are able to describe every concept better than my prof! Plus it's really cool to see what i'm learning in class be put into minecraft lol

  • @diggoran
    @diggoran หลายเดือนก่อน +3

    Interesting seeing the branch conditions not being built into the opcodes. I expected JEQ and JNE to be their own opcodes, but you're able to do a 4 in one with BRH due to using a 10 bit address and having 2 bits left over.

    • @redyau_
      @redyau_ หลายเดือนก่อน +3

      Yeah, seeing the branch conditions with the comparison notations was so eye opening! I've learned assembly at uni extensively, but it never clicked like this.

    • @creeper6530
      @creeper6530 หลายเดือนก่อน

      It could be a pseudo-instruction that assembles to `CMP r1 r2 ; BRH zero `

  • @daminquet12
    @daminquet12 หลายเดือนก่อน

    keep up with the weekly upload matt! i love your videos, especially the computer making series

  • @NateTmi
    @NateTmi หลายเดือนก่อน

    watching this is helping me in topics out side of building this MC-com. when u said it get trapped in an un ending loop, it made me remember a mod I am programing & what I can add to any procedure that loops back to itself

  • @Sokar6186
    @Sokar6186 หลายเดือนก่อน +10

    Relative jumps also help in the case when your memory is large enough to have addresses larger than instructions themselves. More often than not you need to jump locally for loops rather than across your program, so relative jumps are great for most cases. This way you can quickly and easily do jumps without always needing paging registers.

  • @goldensaddle1361
    @goldensaddle1361 หลายเดือนก่อน

    Simply amazing mannn
    I wanted to learn and make a CPU and saw many logism tutorials which were very difficult to understand with them making a multiclock directly making it harder for me to make a control unit but since you've shown me a wayy to make a singleclock cpu which I didn't even know was possible lol I can finnally make one , didn't know the childhood game I love could give me so much more , thank youu soo muchhhh mann

  • @Benlego2017
    @Benlego2017 หลายเดือนก่อน +15

    typo at 1:10 : you accidentally had the ALU Input B display a 7, not a 3

  • @MrTurtleWithTophat
    @MrTurtleWithTophat หลายเดือนก่อน +2

    Man, you posted this right as I was watching the redstone awards trailer.

  • @smellycheese08
    @smellycheese08 หลายเดือนก่อน +2

    17:23 wouldn't it make more sense to combine CMP and BRH into one new instruction, maybe called branch if (maybe with the mnemonic BIF)? BIF could take 4 operands: REG1, REG2, compare operator, jump address. is it possible for an instruction to take 4 operands? idk if it is possible to do that but I'd like if it was

    • @creeper6530
      @creeper6530 หลายเดือนก่อน +2

      I had similar thought. There are usually instructions BEQ and BNQ (branch if equal, branch if not equal), and they'd be simple to make as pseudo-instruction (that assembles to CMP r1 r2 ; BRH zero addr)

    • @FrikingRL
      @FrikingRL 25 วันที่ผ่านมา +2

      It could but it would be like a 20 bit instruction length so it wouldn't work on his computer

    • @smellycheese08
      @smellycheese08 25 วันที่ผ่านมา +2

      @@FrikingRL @FrikingRL well wait it would work if it was just a pseudo instruction that assembled to
      SUB REG1, REG2, REG0
      BRH compare operator, jump address

  • @whisperSSG8
    @whisperSSG8 หลายเดือนก่อน +1

    finally he caught up to my microcontroller engineering 2 module now i can just watch this instead of going to lectures

  • @Sand.
    @Sand. หลายเดือนก่อน

    I was having trouble adding flags to my CCA this morning, so this will definitely help!

  • @LegendEnder
    @LegendEnder 27 วันที่ผ่านมา +1

    17:44 smooth.

  • @aselavatma4453
    @aselavatma4453 หลายเดือนก่อน +1

    after 15:50 my chin dropped. i dont looked that way before. my brain gone speechless

  • @hikariwuff
    @hikariwuff หลายเดือนก่อน

    Awesome job on this so far. Hopefully arrays won’t be too much to ask for this computer but I’d be really interested to see how you pull them off. :)

  • @creeper6530
    @creeper6530 หลายเดือนก่อน +1

    I expected pseudo-instructions like "branch if equal", "branch if not equal" etc, that'd assemble to CMP and BRH instructions (so the pseudo-instruction would be 2 cycles long)

  • @victor6010
    @victor6010 6 วันที่ผ่านมา

    So how smart and pro at redstone are you?
    mattbatwings: YES!!!

  • @rodrigoqteixeira
    @rodrigoqteixeira หลายเดือนก่อน +4

    5:46 love how this version of the computer that doesn't have BRH is actually cool, not because it's any powerful or even useful, but because its halting problem is solved.

    • @Kynatosh
      @Kynatosh หลายเดือนก่อน +1

      Yeah it is solved because it has no conditionals so you can solve for "does it end or not" in polynomial time: if there is a loop at any time, it won't ever end.

  • @FrikingRL
    @FrikingRL 26 วันที่ผ่านมา

    Its getting really interesting keep it up !

  • @nerdlife206
    @nerdlife206 หลายเดือนก่อน

    Elegant. Well done

  • @efedirlik3259
    @efedirlik3259 หลายเดือนก่อน +1

    you can make an assembler using different named items and put them in chests with an order and than hoppers can understand them line by line than turn them in to binary later add it to the instruction memory

  • @atom1kcreeper605
    @atom1kcreeper605 หลายเดือนก่อน +3

    Good news my $326.79 of logic and memory chips finally arrived.... And its all your fault :)

  • @shailist
    @shailist หลายเดือนก่อน +1

    relative jumps are far superior to absolute jumps when you introduce dynamic code loading and relocations. since this architecture uses a ROM, dynamic code loading and relocations are never a problem.
    (tho mplementing relative jumps is as easy as plugging the operand into the addition in the program counter)

  • @FeriElenatro
    @FeriElenatro หลายเดือนก่อน +1

    Matt, what about being able to specify the address of a register/memory location as a number from a register? For example, if register 1 stores the number 3, then will do something with register 3

    • @Purple_Prog
      @Purple_Prog หลายเดือนก่อน +1

      you mean like pointers ?

    • @MrMoon-hy6pn
      @MrMoon-hy6pn หลายเดือนก่อน +1

      I imagine once he gets to memory he would implement something like an “ldr”instruction, load from memory address into a register (and set the zero flag?) as well as the complementary store opcode. Then the world’s your oyster.

    • @creeper6530
      @creeper6530 หลายเดือนก่อน +1

      Pointers are powerful, so I bet he'll make them

  • @MasonAlex-f9p
    @MasonAlex-f9p หลายเดือนก่อน +1

    you should add an even flag, it could be useful in bitwise operations

    • @creeper6530
      @creeper6530 หลายเดือนก่อน

      That's pretty much just LSB of output, so easy to implement

  • @AdrianHereToHelp
    @AdrianHereToHelp หลายเดือนก่อน +2

    Flags, Branching (Part 1), Branching (Part 2), and Jumping to Flags, Branching (Part 1), Branching (Part 2), and Jumping to Flags-

  • @Harmon-
    @Harmon- หลายเดือนก่อน

    i have absolutely no idea what this means but i love it

  • @SobTim-eu3xu
    @SobTim-eu3xu หลายเดือนก่อน

    Bro, I respect you

  • @igorkowalski1928
    @igorkowalski1928 หลายเดือนก่อน +1

    Ad 17:45
    As a mathematician I know that Turing completeness isn't understood exactly the same in computer science as it is in math, but for completeness sake: You said in 1st episode that a Turing machine should have infinite tape, which would be equivalent to say the computer has infinite memory (which is obviously false).
    Ergo, in general, Turing completeness in computer science is more like "real world close enough" to Turing machine.
    Pardon my pedantic behavior.

    • @MadocComadrin
      @MadocComadrin 26 วันที่ผ่านมา +1

      @@igorkowalski1928 Computer Scientist here. The definitions in both fields are exactly the same (or at least a some variant of a 7-tuple definition depending on the text you're referencing). The issues here are that lay people generally don't know the full definition, and if they do, they don't connect the dots that their machine isn't Turing Complete (often since they're not building actual TMs).

    • @igorkowalski1928
      @igorkowalski1928 26 วันที่ผ่านมา

      @@MadocComadrin I apologize then. That's what I get for using wikipedia as source XD. Still the fact stands, and my internal formalist may rest easy.

    • @MadocComadrin
      @MadocComadrin 26 วันที่ผ่านมา

      @@igorkowalski1928 No problem! I made a similar comment about the fact that the machine here isn't even capable of things outside of Regular Languages too (also evoking the word "pedantic").

  • @ElishaJS14
    @ElishaJS14 27 วันที่ผ่านมา

    Instead of following along with Minecraft, I decided to use Logisim instead. Took a bit to get the CCA working. Used the wrong logic get to get the carry signal, then ended up putting the flood carry on the wrong side of the cancel carry section. Then took a bit to figure out how the carry in was handled. But! I got it working lol

  • @rodrigoqteixeira
    @rodrigoqteixeira หลายเดือนก่อน +3

    2:35 nice, you used the congruent simbol :)

  • @fisch37
    @fisch37 หลายเดือนก่อน

    Mattbattwings still replacing my professor 7th episode in a row

  • @thebluefroganimation
    @thebluefroganimation หลายเดือนก่อน

    another video. another APSALUTE BANGER

  • @icy_orca9348
    @icy_orca9348 หลายเดือนก่อน

    This guy has inspired me to study computer science

  • @PixelDop
    @PixelDop 10 วันที่ผ่านมา +1

    I just came here to say, im in your top 0.6% somehow

  • @rodrigoqteixeira
    @rodrigoqteixeira หลายเดือนก่อน +3

    10:15 everyone has made mistakes. Everyone has been on the unexplainable darkness. Glad to hear you're normal now

  • @tzeroocne5409
    @tzeroocne5409 หลายเดือนก่อน

    I just want to add 14:53 the first loop will result r1 with 0 for the final value as for the second loop it will be 255, I'm not sure how useful this is but there's also that difference
    Otherwise good video

  • @coolhenry7
    @coolhenry7 หลายเดือนก่อน

    Bro wth ur da goat

  • @KKYT1802
    @KKYT1802 17 วันที่ผ่านมา +1

    Soon we will have Minecraft 1.21 in Minecraft

  • @EliaxLavrix__
    @EliaxLavrix__ หลายเดือนก่อน +2

    All my fellas🔥

  • @TheArrow4012
    @TheArrow4012 หลายเดือนก่อน +1

    Probably overlooking something simple, but
    when I go from one instruction that sets flags to another, the redstone line for “sets flags” stays on so it doesn’t activate the pulse to update the flags
    I found a solution that may work, but isn’t ideal or consistent. How is it supposed to be set up

  • @shivairan-javia3627
    @shivairan-javia3627 15 วันที่ผ่านมา

    Would you be able to make a video about how to download all of the mods and texture packs you use?

  • @todeilfungo
    @todeilfungo 21 วันที่ผ่านมา +1

    Is there a way to make direct matrix operation / direct exadecimal operation?

  • @ImNinjaNick
    @ImNinjaNick 21 วันที่ผ่านมา +1

    What texture pack do you use?

  • @Emmminecraft26
    @Emmminecraft26 28 วันที่ผ่านมา

    @mattbatwings could one of your next videos on how to build a computer be about the screen and connecting it?

  • @SMG_CHIPY
    @SMG_CHIPY หลายเดือนก่อน

    Good job

  • @lollocallollodipiazzacalollo
    @lollocallollodipiazzacalollo หลายเดือนก่อน +1

    You are the best

  • @jackinzbox.
    @jackinzbox. หลายเดือนก่อน

    Does anyone know what he uses to make the block diagrams? It would be super helpful for school reports I need to make. Though, I have a feeling it’s manim which is too much of a headache lol.

  • @underscore-y4g
    @underscore-y4g 26 วันที่ผ่านมา

    what about add one mouse input with creakings?

  • @yousefiplaybedwars
    @yousefiplaybedwars หลายเดือนก่อน

    Can you do a video on how to import the script into the instruction memory the repeater and torch script

  • @iPhonepromax-gu7bw
    @iPhonepromax-gu7bw 15 วันที่ผ่านมา

    When is #8 coming? Is it done or do we get a I/O?

  • @MaCHeaMaRoBi
    @MaCHeaMaRoBi 8 วันที่ผ่านมา +2

    make it run doom

  • @LogicJo
    @LogicJo หลายเดือนก่อน +1

    you should make a video with Ben Eater

  • @TheGameGuyShorts
    @TheGameGuyShorts หลายเดือนก่อน

    Hi Matt, What Redstone Mod do you use?

  • @coolhenry7
    @coolhenry7 22 วันที่ผ่านมา

    i have a question, so what do you mean "hook up a decoder to these flags"

  • @BaldiReycaster
    @BaldiReycaster หลายเดือนก่อน +1

    Nice.

  • @didymusii2919
    @didymusii2919 หลายเดือนก่อน

    hello mattbatwings, do you think it's possible to make a computer using hexadecimal memory instead of binary? like, using comparators? i've already made hexadecimal memory and for the parts we can't make in hexa we can still convert back in binary.

    • @HamzaZaid-n2n
      @HamzaZaid-n2n หลายเดือนก่อน

      Same question

    • @creeper6530
      @creeper6530 หลายเดือนก่อน

      I think it'd be too hard, especially since there are next to no premade hex/analogue adders, subtracters etc.

    • @didymusii2919
      @didymusii2919 หลายเดือนก่อน

      @@creeper6530 i already have made some tho adders and substacters, no multiplicators or dividors tho. and it's because it's hard that it's fun.

    • @didymusii2919
      @didymusii2919 หลายเดือนก่อน

      i've retryed recently to build a full hexa alu and i hate it. i will continue the madness anyway...

    • @didymusii2919
      @didymusii2919 หลายเดือนก่อน

      i hate the necessary carry bit in hexa

  • @Franpupvr
    @Franpupvr 16 วันที่ผ่านมา

    i dare you to build a two player game in minecraft with redstone

  • @ThatSuperDog
    @ThatSuperDog 19 วันที่ผ่านมา

    You should try vr game Yeeps : hide and seek

  • @AdmiralWindhose
    @AdmiralWindhose วันที่ผ่านมา

    Sorry, but i have no idea how to run a Phython program. can someone tell me how to use his programs for scripting the computer?

  • @FlippingMiner
    @FlippingMiner หลายเดือนก่อน

    16:18 anyone else read “sup bruh”

  • @MusicallySimple-xe8fj
    @MusicallySimple-xe8fj หลายเดือนก่อน

    Day 1 of asking Matt to make a redstone Minigame collection.

  • @diggoran
    @diggoran หลายเดือนก่อน

    Zero 7 mentioned

  • @iPhonepromax-gu7bw
    @iPhonepromax-gu7bw 15 วันที่ผ่านมา

    Call stack and I/O plus a cache is coming

  • @anajotz
    @anajotz 23 วันที่ผ่านมา

    pls make next vid i have been waiting too long 😢

  • @rodrigoqteixeira
    @rodrigoqteixeira หลายเดือนก่อน +2

    4:28 those 2 free bits. Maybe they could be used for relative jumps...? Think about it master

  • @farpurple
    @farpurple 6 วันที่ผ่านมา

    Ah, i wanted to make one(for abother game), started on python to understand all the sh*t, but i chose riscv32i for some reason... Uhm, it's not like hard, just lot of instructions..
    But main thing where i stopped is ecall, permanent memory devices, io devices.. (calls to hardware or how is that done?)
    And also on Privilege Level (Zixr or smtg extension..) Like whete it is stored or smth?
    Chatgpt gives answer:
    devices are memory mapped.
    Current privilege level is stored in privelege level register.
    But i did not found a proof on any of those.. x0-x31 + pc are multipurpose registers, and not suitable for that, 4096 special registers (with vectors/system info/exception info/system configuration) i checked their documentation, most similar was mstatus, but it contains "does system implements machine mode" same for ustatus sstatus.. Nothing about current privilege..

  • @manouel3417
    @manouel3417 หลายเดือนก่อน

    I would want to learn about the screen

  • @sweet_dude-18
    @sweet_dude-18 หลายเดือนก่อน

    wow i cant even make a lamp turn on LOL

  • @kairu_b
    @kairu_b หลายเดือนก่อน

    Nice

  • @keanumayer
    @keanumayer หลายเดือนก่อน

    In the next video, can you help us make a screen?

  • @Zero-captain
    @Zero-captain 19 วันที่ผ่านมา

    Solitaire pls

  • @Didomate
    @Didomate หลายเดือนก่อน

    Clicked on this on the very first Planck second

  • @mine_blame
    @mine_blame หลายเดือนก่อน

    clownpierce posted at same time lol

  • @elen1ap
    @elen1ap วันที่ผ่านมา

    Doom, we're coming...

  • @claudiaitborahy
    @claudiaitborahy หลายเดือนก่อน

    Data memory is ne next:)

  • @thesp1r1tdragon55
    @thesp1r1tdragon55 หลายเดือนก่อน +2

    If direct jumping is better on the actual hardware why would you ever do relative jumping? Couldn't you just translate all the relative jumping instructions in your code to direct ones during the assembly process?

    • @taylorwesker7667
      @taylorwesker7667 หลายเดือนก่อน +2

      There is a lot of reason.
      The easiest one to understant is the case where youre not doing fixed size encoding of the instructions.
      Here we have a 10 bit address, this not that big. Now imagine a 64 bit machine, in this case the adress is fairly large. This mean that event if most of the time youre jumping in 1024 adresse range (10 bits) you still need to write a full 64 bit adress (54 bits wasted). Those "unused" 54 bits adds up really quickly in a real world program.
      Now even if youre fixed sized encoding, in the real world, youre not the only program running on the computer. So first another program (the kernel) puts you in memory instead. This mean you have no idea where will be the actual adress where you going to be executed.
      Also there is a lot more added complexity like virtual addressing (for isolating program from each other and a LOT of other reason)
      This is completely out of scope for the purpose of a minecraft computer. So those are problems we do not have here thankfully 😊

  • @BleachWizz
    @BleachWizz หลายเดือนก่อน

    4?05- for _ in range(100)

  • @_CABi_A
    @_CABi_A 21 วันที่ผ่านมา

    Mod Tiny Redstone

  • @rodrigoqteixeira
    @rodrigoqteixeira หลายเดือนก่อน

    4:08 OH YEAH BOYS, INTRODUCING *BRH* !!!!! 🎉🎉

  • @OllethegreatIV
    @OllethegreatIV 15 วันที่ผ่านมา

    Im sorry i have failed you i stopped doing this cuz on my computer i costs to download mods so its very hard for me to build ALU’s or to build memory in a computer without worldedit

    • @3dprintinglife
      @3dprintinglife 9 วันที่ผ่านมา

      world edit is a free mod

  • @noahtht12
    @noahtht12 10 วันที่ผ่านมา

    Can you make if, ifelse, wait until. In redstone

  • @blorbguy
    @blorbguy หลายเดือนก่อน

    under 30 minutes?!

  • @parkerrost9012
    @parkerrost9012 23 วันที่ผ่านมา

    I subscribed thanks to CraftyMasterman 😁👍