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.
I just wanna say. Right as this series was releasing I had a project for a class to make a CPU using Logisim and your series really helped. (So much I ended up crediting you in the thanks section). Really fun to watch
In the paint program, when both drawing mode and erasing mode are on, the erasing mode will take priority, which might lead to unintended consequences to users. I suggest resetting a mode whenever the other mode is toggled to enforce that there can only be 3 modes: cursor (00), drawing (01), and erasing (10).
man your series actually gave me the motivation to make my own computer design even if it's not in minecraft i'd love to see more of this kinds of series
This series is so cool, i’m currently learning c++ and i’m amazed by how a computer is made from just some logic gates, tho i still can’t wrap my head around this cuz it’s so complicated, i appreciate your work, the programs at the end feel so much like a high level thing that i’m familiar, thank you for all of these, you’re a genius
I think I will try to recreate this Computer in the game "Virtual Circuit Board" Which, while not being Minecraft, still allows a close approximation of Redstone logic, but in 2D. Thanks for the inspiration and great explanations @mattbatwings!
wow it's kind of hard to believe how you insist making this great series even though the view is way less than other videos Thank you for making this series!
Could've make define be like C #define, where it can expand to any text and not just values, allowing you to add labels to registers for what's inside them
You should put some kind of JSR instruction in the language Basically it just jumps to that label but also pushes a return value on the stack, when you use RTS it returns to the value that was on the stack This is similar to how it works in 6502 assembly.
I just started my intro to programming class, but I've already done some programming before, nothing crazy, but I know the basics, so all the assignments are easy, rn I'm basically just trying to keep track of the way they want us to format our comments, the hardest part so far was just getting vscode to actually run and debug c++, took like 5 hours, mostly just uninstalling and reinstalling a program because it refused to work. My antivirus also keeps yelling at me every time I run a program I make to tell me that it's safe. Why do I care? I just want to know if something isn't safe, and also, of course it's safe, I made it.
i created the same cpu but in a logic simulator, i did everything the same and it worked until it got deleted accidentally. now im trying to create a new 32bit cpu based on this and im even gonna try making a gpu for it. it would be fun if you made a minecraft gpu that works with your cpu that can render 3d games. anyways i always thought making a cpu was hard but you proved that making and programming a cpu are actually easy. thanks.
my problem: when I try to use the simulator it doesn't work. When I use your example code is works but when I copy that and paste that in my own code for example hello.as and run it in simulator it doesn't work😢can someone please help? please 🙏?
Jokes aside this gave me a lot of motivation for my project. I'm not trying to make a pc in Minecraft but I'm trying on creating a pc in a software noone ever tried before
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.
Aight
Matt why you don't make videos or channel in spanish(Sorry, I'm a Spanish speaker)
Third
Minecraft and Programming coming together is the coolest thing of the year so far.
I just wanna say. Right as this series was releasing I had a project for a class to make a CPU using Logisim and your series really helped. (So much I ended up crediting you in the thanks section).
Really fun to watch
Man, that's some crazy timing
6:18 your assembler has NEG instruction which you could have used :)
Idk how I forgot that when I made it LOL thanks
@@mattbatwingshiaaa😊
the simulator uses an older version of the assembler, and im assuming thats where he was testing
(the older version doesnt contain NEG)
@@ianyourgod it got updated today actually!
In the paint program, when both drawing mode and erasing mode are on, the erasing mode will take priority, which might lead to unintended consequences to users. I suggest resetting a mode whenever the other mode is toggled to enforce that there can only be 3 modes: cursor (00), drawing (01), and erasing (10).
Thank you for making this series, I learned so much watching it and the videos were such high quality!
man your series actually gave me the motivation to make my own computer design even if it's not in minecraft
i'd love to see more of this kinds of series
my brain stoped working since the 3rd video
Stoped lol
Me too brotha me too
We all did, 🙏💀
*stopped
Haha got it
You clear your buffer?
"We made an entire computer in Minecraft, but i recommend you to use simulator"
This series is so cool, i’m currently learning c++ and i’m amazed by how a computer is made from just some logic gates, tho i still can’t wrap my head around this cuz it’s so complicated, i appreciate your work, the programs at the end feel so much like a high level thing that i’m familiar, thank you for all of these, you’re a genius
Can it run doom?
probably
Na, DOOM need 16 - 32 bit calculations, our CPU can only handle 8 bits.
@@CyberNinjaX682 but you can adapt it
DOOM requires megabytes of memory
The only memory the CPU has is registers
In theory it should be able to because it is turing complete, but it probabilly doesn't have enought memory
This has been an awesome series! Thank you for all the time you put into this. 😄
I loved these videos it really helped me understand how computers work, thank you!
Congratulations on wrapping up an epic series! :D
hey Matt thanks to you ı was able to build my own redstone computer !!!! and to honor you ı named ıt mattbook :D great videos man keep goin
I am making a program called egg, where you just type egg a lot to run programs. this was very helpful for my project.
2:33 "define yourmom 7", "LDI r1 yourmom"
I hope this series never ends.
he said this was the last episode
thank you for making this awesome series :)
I am grateful to you for making content that I can both learn from and produce.
thank you so much for this series, it gave me so much, from information to a new passion
I think I will try to recreate this Computer in the game "Virtual Circuit Board"
Which, while not being Minecraft, still allows a close approximation of Redstone logic, but in 2D.
Thanks for the inspiration and great explanations @mattbatwings!
Such a fire series!!! You cooked!!!!!! 🔥🔥🔥
This is the coolest thing ever, i will re-watch it many times
New title: let's make a videogame for the Redstone computer
I'm pretty sure he said that he's gonna make games for the computer from now on
wow it's kind of hard to believe how you insist making this great series even though the view is way less than other videos
Thank you for making this series!
What if minecraft added a brightness lamp, I mean it would be controlled by power of the redstone dust. that would open up sooo much possibilities 😭🙏
Its called Redstone with a texture pack but yes I see what you mean but it would need a new pixel design
06:27 Hey Matt, in the ISA, there's an instruction called NEG that does the same thing. However, it doesn't really work in the emulator.
Very nice work. thanks for all the effort you put in this
I love relearning assembly in a different form for a millionth time
now lets do a pipelined one!
jk thats hard.
i'd love it tho
the masculine urge to build a high level language for this
dare someone to make a higher level language for this thing lol
I think a few people have in my discord!
Could've make define be like C #define, where it can expand to any text and not just values, allowing you to add labels to registers for what's inside them
This is so cool!
The episode that top it off
3:11 You have the same background as me!!!🎉
Are you also using Lively Wallpaper?
Even as an acronym/shorthand hater this was pretty amazing
keep going my brother !!!
3:14 Is that Atom IDE? I thought it was discontinued a long time ago?
You should put some kind of JSR instruction in the language
Basically it just jumps to that label but also pushes a return value on the stack, when you use RTS it returns to the value that was on the stack
This is similar to how it works in 6502 assembly.
I just started my intro to programming class, but I've already done some programming before, nothing crazy, but I know the basics, so all the assignments are easy, rn I'm basically just trying to keep track of the way they want us to format our comments, the hardest part so far was just getting vscode to actually run and debug c++, took like 5 hours, mostly just uninstalling and reinstalling a program because it refused to work. My antivirus also keeps yelling at me every time I run a program I make to tell me that it's safe. Why do I care? I just want to know if something isn't safe, and also, of course it's safe, I made it.
Nice final episode
i always wanted to code a machine and do redstone but i was not able to install mods in my cracked version so i quit
Are you going to build a C90 compiler, and after that build GCC on this thing?
bonus episode, compiler from a a higher level language to your architecture
Watching this after doing my finals exam in compiler construction.
0:34 doesn't 2 1 2 3 convert to 0010 0001 0010 0011 and not 0100 0001 0010 0011??
first nibble was misplaced, happens to the best of us
oopsies
Yay new episode
This is awesome!!
Why not creating a compiler instead of creating programs directly in assembly ?
Thanks for all of this serie, now my brain can't fit inside my head. Now i need to watch RUclips short to fix that...
For the love of god make a tutorial about a sprite drawer that can draw any sprite in specfied x y coordinates
i created the same cpu but in a logic simulator, i did everything the same and it worked until it got deleted accidentally. now im trying to create a new 32bit cpu based on this and im even gonna try making a gpu for it. it would be fun if you made a minecraft gpu that works with your cpu that can render 3d games. anyways i always thought making a cpu was hard but you proved that making and programming a cpu are actually easy. thanks.
some assembly
Add a colour display
gpu tutorial next?
"define yourmom 7" 2:30
the simulator needs Vulcan which my laptop can't use :( if it's possible to get a version that doesn't use Vulcan that'd be nice
Thank you for video😅,NICE
my problem: when I try to use the simulator it doesn't work.
When I use your example code is works but when I copy that and paste that in my own code for example hello.as and run it in simulator it doesn't work😢can someone please help? please 🙏?
make it have a UI, would look cool
you should make some way to accessories, then some actual accessories
...wha
I wish I had enough free time to write a C compiler backend for this...
2:30 nooo Minecraft RUclipsr defined my mum😭
hello mattbatwings
GPU next?
Can We Get Windows11 pro please ?
now connect it to the internet and run google chrome
that's nice that people moved programming from Minecraft to real life 🤔
Cool , now let it run DOOM
Can you make a 4070ti and Intel i9 13900k and a real redstone motherboard
ok let's make an os in assembly 😂
Jokes aside this gave me a lot of motivation for my project. I'm not trying to make a pc in Minecraft but I'm trying on creating a pc in a software noone ever tried before
Make Doom.
matt, could you name the texture pack you use in this video please ruclips.net/video/xbGEN6S0KCs/видео.html
I WROTE THE BEST TETRIS!!! (the thumbnail)
clearly not
sounds like a lie to me
heard you didn't even do a good enough job to get paid. sounds like a skill issue
Please be my father figure
i disliked your comment bcs u have a bad tetris
Technically 2nd
17 seconds
cool! were you the first veiwer?
Cool
yeee
peak
yo
.as? .s is better trust me
LETSGOOOOOOOOOOOOOOO
1min ;)
95th
I am 44th liked
35th comment
1 hour ticket claim here only 20 more minutes
Bro why definie urmom
First
7 minutes 26 comments? Nah bro just give up
just kidding
Jokes on you this is the end of the series anyway 😉
First comment
وقتی نمیتونی پیسی بخری یدونه تو ماینکرفت میسازی👍