Join us on Discord: discord.gg/jmf6M3z7XS Follow me on Twitter: twitter.com/WeirdBoyJim Support the channel on Patreon: www.patreon.com/JamesSharman
@schrodingerscat1863 Жыл бұрын
This project is actually a very thorough introduction to the topic of microprocessors and digital systems design. Certainly far better than than the courses I took at university back in the 80's when the technology being used here was current. Great practical demonstrations of some fairly complex topics makes this a very good series for anyone just getting into digital electronics. Excellent content 👍
@DarkPlaysThings Жыл бұрын
As someone currently studying electrical engineering at university with a digital systems module, I can say this series is still considerably better than the current curriculum even despite it being "outdated" technology.
@schrodingerscat1863 Жыл бұрын
@@DarkPlaysThings The one thing that always drew me to digital electronics is the unchanging nature of it. Sure systems have become more complex over the years but the basic building blocks are exactly the same now as they were 30 years ago. If you really get to grips with all the topics covered in this series and read around the subjects raised it will stand you in good stead for a digital electronics module at undergraduate level. The real complexity comes into play with increased clock speeds and you probably will only just be touching on that at undergrad level if covering it at all.
@weirdboyjim Жыл бұрын
Kind words! I'm not sure I'd want my stuff to be a substitute for any formal learning, but I've always found playing around and experimenting is a great way to learn.
@schrodingerscat1863 Жыл бұрын
@@weirdboyjim You are too harsh of your own efforts, your approach is structured and methodical and very well presented. You are covering some reasonably advanced topics in a way that makes sense and is entertaining. A far cry from the terrible efforts of some of my lecturers on this subject. You would be surprised how bad some professional educators are at covering these topics.
@Peter_S_ Жыл бұрын
@@weirdboyjim If you wished to, you could certainly film this series again from the standpoint of knowing your objective and the result would be better than any CPU design course I've seen. You should be congratulated.
@TroySchrapel Жыл бұрын
Great work, James. I love your pragmatic approach to these issues. Really looking forward to seeing your sprite circuit come together.
@weirdboyjim Жыл бұрын
Thanks Troy, I hope the sprite circuit doesn't disappoint. The design for it ha remained pretty much constant since the start of this project but I'm in the process of working out how to best break it down into videos.
@rauljvila Жыл бұрын
It still amazes me what "built from scratch" really entails! Great explanations as usual, thanks!
@weirdboyjim Жыл бұрын
Glad you liked it! There are people on the discord who would want to go deeper and start cooking custom silicon.
@neodimium Жыл бұрын
Man! This is like candy for my brain!
@weirdboyjim Жыл бұрын
Glad you like it!
@Pippo.Langstrumpf Жыл бұрын
You are a crazy electronics freak!!! The content I was looking for!
@weirdboyjim Жыл бұрын
Glad you are enjoying!
@m1geo Жыл бұрын
Excellent James! I loved the jam-1 scrolling end! 😁
@weirdboyjim Жыл бұрын
Thanks George!
@TheRealBobHickman Жыл бұрын
This was very educational, top content again!
@weirdboyjim Жыл бұрын
Thanks Bob! Glad to hear you are still finding it interesting!
@nahkamursu Жыл бұрын
Finally new video, i was getting worried mate :D
@weirdboyjim Жыл бұрын
It's only been a couple of weeks! Hoping to get videos out with a more regular cadence for the next few weeks.
@tux1968 Жыл бұрын
Hi James, always so happy to another step forward in your project! Thanks.
@weirdboyjim Жыл бұрын
Thanks Tux! Glad you are enjoying it!
@OscarSommerbo Жыл бұрын
A perfect video for a lazy Saturday!
@weirdboyjim Жыл бұрын
Hope you enjoyed it!
@ecosta Жыл бұрын
This project keeps amazing me! I wish I had time and patience to troubleshoot hardware issues like you do.
@weirdboyjim Жыл бұрын
Glad you are still finding it interesting!
@halfacanuckАй бұрын
Extremely interesting episode.
@weirdboyjim22 күн бұрын
Thanks!
@Peter_S_ Жыл бұрын
Outstanding series. Extra points anytime a '574 is used as a delay line or a shift register as well.
@weirdboyjim Жыл бұрын
Lol, Thanks! It's worth looking at alternatives like the 374 when you are doing things like delays or shifts, the pins may be more suitable.
@Peter_S_ Жыл бұрын
@@weirdboyjim The moment the 573/574 came onto the market I swore off ever using a 373/374 again. Too much PTSD from having to do bus layout with them.
@ucmRich Жыл бұрын
YOu and your work are extremely amazing pal, ty for doing this for us :-D
@weirdboyjim Жыл бұрын
Good to hear you are finding it interesting!
@vasileceteras Жыл бұрын
Thank you for this series, this project is a gold mine for learning how to properly design a computer! I have a question: in theory, can the sprite overlay be extended to deal with extra one or more sources of data, without adding more delays?
@ArneChristianRosenfeldt Жыл бұрын
Why do we care so much about delay? If this was a blitter, I would understand. Let’s wait for the overlay and sprite circuit first. PcEngine overlaid 16 sprites. C64 and Amiga can use sprites for the background (for parallaxe) . First thing first. I don’t actually want a second playfield like Amiga and genesis. Half of each field is wasted. Have both of them, but without overlap. Overlap is done by sprites.
@weirdboyjim Жыл бұрын
The biggest bottleneck is memory. At full vga pixel clock I can just read a byte (per ram chip) per cycle. So that's a bigger restriction than the overlay circuit itself. I'm expecting the overlay circuit to be pure logic and around 10ns, so you could combine 3 of those circuits in a single clock to merge 4 data sources.
@LeeSmith-cf1vo Жыл бұрын
When you do this fix on pcb I think you should use 2 d-latches for it if you have space. That way you can cascade the delay up to 8 cycles, selectable by jumper. This will protect you against an unforseen future problem that may introduce additional delays without having to order new pcbs. Potentially you could leave the additional d-latch unpopulated until required.
@ArneChristianRosenfeldt Жыл бұрын
Does a CRT not need some time to react on hsync. So we have time for our pixel pipeline.
@GodmanchesterGoblin Жыл бұрын
@ArneChristianRosenfeldt Sync pulses have their own front-porch and back-porch timings to address the time that monitors require to process them (that goes back to CRT based displays). The purpose here was to keep everything in step rather than have timings shift further as the display pipeline became longer.
@weirdboyjim Жыл бұрын
I'm comfortable I have the right number of steps accounted for here. The broad strokes of the design have held for a while now, I look forward to your comments when I'm forced to tweak it.
@ArneChristianRosenfeldt Жыл бұрын
Yeah, I also don't know how other chips do it. Like you cannot expose registers for border on EGA, smooth scroll on VIC-II, and tell the coder to add some magic values to make it fit. Though on the C64, where exactly is sprite position 0? Isn't it some arbitrary value? Smooth scroll=0 matches the border exactly. So I guess that you are right. @@GodmanchesterGoblin
@kriswillems5661 Жыл бұрын
Cool, you're going to do sprites too. I really would like to know how sprites work in hardware.
@ArneChristianRosenfeldt Жыл бұрын
Have you seen the die of the Vic-II. I think that is the cleanest. Is wired-or allowed? Each sprite has to signal all sprites below. So we need a lot of inverters. Actually, low or highZ. At the beginning of each pixel, precharge all lines .. it is a mess. How would you do it in CMOS? Can we have 4 groups with 4 sprites each? Then we resolve within the groups. Shadow bubbles up. We resolve the groups. Then back down. Now the elected sprites puts its color onto the bus. For this: why not load 1 bit transparency first, but 24 bit color only on demand? How big is the palette? 4 bit for sprite number. 4 for x and 4 for y?
@weirdboyjim Жыл бұрын
I'm aiming for a very simple system.
@ArneChristianRosenfeldt Жыл бұрын
I was referring to the delay. If priority takes one or more cycles, indeed we need to delay another signal: the color. On a breadboard with cheap memory it is so tempting to just use more memory. The palette is just a texture approach I did steal from Saturn and PSX. I was using the number 4 because I found 4-input NAND parts. I think that I have seen 4 way multiplexers. CMOS in ICs uses 4 bit adder macros. 6502 has a 4 bit adder for PC. Ben Eater uses a 4 bit adder. 4 is the number. You seem to aim for the C64 way where sprites and background overlay is completely separated from the intra-sprite overlay. C64 has this behind background flag. It would be interesting to have 16 sprites and one of them refers to the background. So z order always makes sense. Though I would not want to route access to background data to each sprite-unit. @@weirdboyjim
@БидонКадыкавич-х2ц Жыл бұрын
Question, i would apreciate if someone would answer it. I have 16 ram chips 2048×8 (2048 adresses - each adress contains 8 bits). I need to use this specific chip, cant use bigger capacity. i want to connect all of them to make 32K RAM. Problem is that it requires external logic, and i just cant figure out how to implement it. Can you recommend some articles or books, where i could read about memory chip organisation?
@weirdboyjim Жыл бұрын
Jump onto the discord and chat on the electronics channel. What you probably want though is a pair of 74xx138’s. The outputs from those go to the chip enable lines of the ram chips. The lower 11 address lines go to all the ram chips and the upper 4 address lines go to the 138’s
@БидонКадыкавич-х2ц Жыл бұрын
@@weirdboyjim yes! This is exactly what i needed, thanks. joined
@AJB2K3 Жыл бұрын
I've spent have a day also chasing a display issue caused by bad jumpers.
@weirdboyjim Жыл бұрын
After recording this I started thinking about ways to tidy the vga stuff up a bit before I add anything else extra. Might save me some trouble.
@cj09beira Жыл бұрын
What a good surprise
@weirdboyjim Жыл бұрын
Hope it lived up to expectations!
@monad_tcp Жыл бұрын
5:00 so its pipelined !
@weirdboyjim Жыл бұрын
Yep. For a while this video had a working title referencing that directly.
@PhilBoswell11 ай бұрын
This episode isn't on the "VGA from Scratch" playlist, thought you might like to know…
@weirdboyjim11 ай бұрын
Fixed!
@GeomancerHT Жыл бұрын
Looking forward to the day we can develop some games, would be great to code with limitations of a modern retro computer.
@weirdboyjim Жыл бұрын
Yeah, starting to make a list of what I want to develop in a reasonable amount of time.
@ArneChristianRosenfeldt Жыл бұрын
So what is your interest? I used to be obsessed with scrolling, but then a lot of vintage games use fixed screens. I used to think about tricks to avoid color clash, but then 16 bit bitmap graphics got cheap. Parallax backgrounds look nice, but then a lot of games are top down or iso-metric even on genesis. Outrun looks so nice, but then only racing games seem to really utilize super scaler sprites. Those rail shooters are all so meeh. No classics. And while I can appreciate good graphic artwork, why do people always talk about the music .. in the title screen?? It is about the game. About the sound of the weapon, explosions, tire screech, and monster growling behind the corner.
@GeomancerHT Жыл бұрын
@@weirdboyjim thank you for your reply, I hope you make some of the tools/sdk available because I was talking about myself coding haha, looking forward to your games too :D
@weirdboyjim Жыл бұрын
@@GeomancerHT actually the emulator and assembler is available on the discord
@ChristopheVerdonck Жыл бұрын
i found this interesting
@weirdboyjim Жыл бұрын
Glad to hear it!
@ArneChristianRosenfeldt Жыл бұрын
27 MHz, 24 bit DAC is so AtariJaguar
@weirdboyjim Жыл бұрын
Close, it's 25.175 mhz. I never got the chance to work on the Jaguar unfortunately It looked like fun.
@ucmRich Жыл бұрын
If you ever make a VGA or a future HDMI kit, please sell them. I'll tell others about it for you +1
@weirdboyjim Жыл бұрын
I'm unlikely to make a kit out of any of these deigns, but I'll think about kit possibilities for future projects.