What was the Sega Genesis Like to Develop Games On?

Поділитися
Вставка
  • Опубліковано 24 січ 2021
  • Really cool system!!
    Blast processing was also apparently broken? Well then...
    Huge thanks to Rodrigo Copetti for outlining this system so well!
    www.copetti.org/writings/cons...
    Music by Nalak
    Follow Nalak on:
    Soundcloud: / brian-kalan
    UA-cam: / kingnalak
    Follow me on Social Media!
    Twitter: / zygalstudios
    Facebook: / zygalstudios
    Instagram: @jamezsgames
    Twitch: jamezsGames / jamezsgames
    Stream Schedule:
    Monday, Tuesday, Wednesday 6:30 PM EST
    #segagenesis #gamedevelopment #retrogames
  • Наука та технологія

КОМЕНТАРІ • 130

  • @ScrapKing73
    @ScrapKing73 Рік тому +9

    You’re not wrong to say it was called the Mega Drive in Japan, but it was actually called the Mega Drive everywhere outside of Canada and the U.S. (eg. Europe, Australia, etc.).

  • @robintst
    @robintst Рік тому +7

    The Z80 was also for maintaining backwards compatibility with Master System games. The Mega Drive was internally referred to as the Mark IV as the continuation from the Mark III/Master System. Coupled with the SN76489, there's still a Master System at it's foundation. And as it came out in 1988 in Japan, it was competing with the Famicom and PC Engine then in 1989 in North America against the NES. That was the whole crux of the "Genesis Does What Nintendon't" campaign, it was their new 16-bit machine against the aging 8-bit NES but SEGA still struggled to make headway because of Nintendo's grip on the market and third-party licensees. There was no "Console War" until 1991 after the FTC forced Nintendo to cut out their shit and make it a more fair for competitors, that's when SEGA cut the price of the Genesis to $150 and packed in Sonic the Hedgehog to counter the launch of the SNES then took half the market for a window of time.

  • @SianaGearz
    @SianaGearz 2 роки тому +24

    The 68000 is a transitional processor, that is clearly designed to be competitive with other typical 16-bit processors, but it also has 32-bit registers as what seems like a future proofing attempt, so when future systems would need to transition to 32-bit, they can remain software compatible, to some extent both ways. Really most instructions only operate on 16 bits to conserve the number of memory transfers and computation, and considerable effort went into cutting down the amount of extra hardware required for 32-bit to almost nothing.
    Compare and contrast say 8088, a 16-bit processor designed to be integrated into 8-bit systems; or 386SX, a 32-bit processor designed as a drop in replacement for 16-bit systems. Obviously neither of these are particularly efficient at the operation at the maximum operand width. It was also common to see 64-bit processors used in systems where actual 64-bit operation wasn't really the desired goal, like PS2 and N64.
    On Megadrive/Genesis, the DMA peripheral stops the 68000 CPU whenever DMA is running. However it's still a net advantage, since it can copy data much faster than 68000 could hope to manage! It's also pretty much necessary since the video memory isn't double buffered, so for the elements that are currently being displayed, you can't just overwrite them as you're preparing the data for next frame, you have to prepare the data in a separate buffers in main RAM while the previous frame is being scanned out by the VDP, and then QUICKLY transfer these buffers from main RAM during the blanking period.
    The processor has to be stopped, since the system doesn't have multi ported main RAM or cartridge, the main RAM and cartridge ROM are just slow enough for the processor, and the processor doesn't have any cache or scratch RAM, so while it's disconnected from RAM, there's nothing that it could possibly sensibly do! The advantage of DMA peripheral is that it only needs to deal with the data, it doesn't have to fetch a 16-bit instruction every time a 16-bit chunk of data needs to be transferred. Additionally, since the processor sits on the main bus, it would necessarily consume at least 3 main bus IO cycles synchronised with main RAM and cartridge bus per transfer, so instruction read, operand read, and then operand write; and that fully unrolled, not counting control flow. DMA peripheral however sits inside the VPU, so it doesn't need an operand write cycle, since the write is internal, it only needs a read on the external bus. So DMA is at least trice as fast.
    Actually most systems of the era made use of cycle stealing, where whatever device held memory, would just stop the CPU clock whenever it needed to do the memory transfers, and as the name implies, as opposed to DMA here, it was just for several cycles at a time. There wasn't really much design room for a more fine grained protocol that would allow for a higher hardware utilisation!
    It's difficult to say why the Z80 was included. It seems that Master System backwards compatibility was a design consideration from the start, Z80 was cheap enough, and would be needed for that anyway; and while it's already there, it might as well take over audio tasks, it's usually used to program the synthesizer soundchip registers, and also manually handfeed samples to the optional DAC channel of the Yamaha soundchip. Obviously had they chosen to forgo Z80, they'd just need some sort of FIFO buffer or an extended asynchronous DMA peripheral to do digital PCM audio. I think some modern productions use 68000 to do most audio stuff, instead dedicating z80 to mix and pump several PCM channels or achieve higher PCM sample rate.
    In my mind, TI PSG chip was never physically present as a discrete component, integrated into the VPU or the jungle chip instead, as Yamaha's reimplemented version with a different noise pattern.
    Also very, very few developers on the system actually wrote any Z80 code, choosing to use SEGA's provided tooling GEMS instead which included the audio driver code and was a complete MIDI based authoring solution.

    • @ArneChristianRosenfeldt
      @ArneChristianRosenfeldt 2 роки тому +2

      68000 has 32 bit registers to address more then 128kiB or 64kiB if you want byte granularity. Anything not 2^2 is odd. You want segments? Also to keep the register file in proportion to all the microcode, 32 16bit register would be okay. Then just pair them up like on 8088. I don't think you've got to get philosophical on this one.
      Cycle stealing sounds so mean. What about the fact that the 68k and the z80 have a phase where they think for themselves and don't need any cycle? Funny how many computers were able to fit their other memory needs (DRAM refresh for z80, video refresh for AtariST) into these slots.

    • @SianaGearz
      @SianaGearz 2 роки тому +4

      @@ArneChristianRosenfeldt but there's only 23 pin (effectively 24 bit) address! Apparently going 32 bit was cheap enough though in terms of complexity, and gave it that extra elegance and flexibility. Fundamentally nothing prevented them from doing 24bit registers though. As to whether I want segment addressing is not the question, that's the design 16 bit processors simply tended to go with. 8-bit processors also have special handling for addresses to accommodate 16-bit address space, and it was 'fine' for what it was.
      Z80 has built in DRAM refresh logic. It's partially used on the Spectrum for extended RAM (the optional 32k) while the 16K are refreshed passively by video scanout. I don't know how DRAM refresh works on ST, I'll learn about it.
      Fundamentally though you have to roll with the memory timings you're given, and the high capacity ROM available for cartridges wasn't very fast. So while you can expect to have 100ns RAM easily, most megabyte capacity ROM of the late 80s when Megadrive came out could be expected to be like 450ns. Megadrive mandates something like 200ns ROM for the cartridge. But it's all the same bus and ROM accesses are necessarily very abundant on Megadrive.

    • @48hourrecordsteam45
      @48hourrecordsteam45 2 роки тому

      Soooo 🤔 if another 32kb of ram was throw in there.. would that have fixed a lot of the issues the genesis had that Devs saw as short coming s .?????????

    • @SianaGearz
      @SianaGearz 2 роки тому

      @@48hourrecordsteam45 I don't see how it would, and what shortcomings?

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      @@ArneChristianRosenfeldt My laptop has 20 GB of RAM, and many systems have odd integers of 64KB. Many graphics cards in the 90s had 6MB or 12MB of VRAM.

  • @mutalix
    @mutalix 3 роки тому +21

    Unbelievable, one of the only approachable videos going over the sega genesis architecture! Awesome job, gladly subbed!

  • @bkslsh
    @bkslsh 9 місяців тому +4

    Regarding "Blast Processing" - I think I remember reading an interview with one of SEGA USA's devs who said he had mentioned "blasting data directly to the VDP" and one of the marketing guys overheard him and had a eureka moment - Blast Processing was born.

    • @MaxAbramson3
      @MaxAbramson3 22 дні тому +1

      Scott Bayless was talking about using the DMA to "blast" data from the ROM to the VDP without having to use the 68000.

  • @MaVmAnRoS
    @MaVmAnRoS 2 роки тому +13

    Great work! It would be interesting to make a video about the NeoGeo, specially as it shares many similar hardware components as the Genesis/MD. It was so ahead from others consoles of its time by relying most only on sprites and huge cartridges but would be nice to see how that was achieved.

  • @VOAN
    @VOAN Рік тому +2

    Of all the console wars, the 16-Bit War was the best. Not only do we get the best consoles of the time but the best games unique to those platforms too.

  • @Sinn0100
    @Sinn0100 Рік тому +3

    I have heard the Sega Genesis was a very easy platform to develop for. The consoles power was easy to get to and given how it was built most arcade developers should have felt right at home.

  • @ScrapKing73
    @ScrapKing73 Рік тому +4

    Huh… I thought the Z80 was included for backwards compatibility first and foremost. It was certainly used in that capacity. Interesting.

  • @Cooe.
    @Cooe. 2 роки тому +6

    6:02 Lol the Genesis/MD' 32/16-bit CPU was clocked literally OVER TWICE AS FAST as the 16/8-bit CPU in the SNES! (≈7.6MHz vs ≈3.5MHz) "A little bit faster"? Get real... The Genesis/Mega Drive absolutely CRUSHED the SNES in raw CPU performance! And the game library reflected this! (Action & sports games). It's the custom graphics & sound processors that made the SNES special, and the games reflected that too. (RPG's, platformers).

    • @BenHeckHacks
      @BenHeckHacks Рік тому +2

      On top of that the SNES CPU had to slow down even more to access RAM, and some cart ROMs were "slow" ROMS slowing things down again!

    • @ZygalStudios
      @ZygalStudios  Рік тому +1

      Yes, thank you for pointing this out. When I said "A little bit of a clock speed advantage", thinking on a smaller scale than what I'm typically used to, didn't seem like all that much. But yes, it is a major difference and benchmarks prove that! The genesis is far more efficient at processing for raw computation.
      However, I want to address something that can be a bit misleading in this context.
      Clock speed isn't always indicative of CPU Performance. There are far more factors involved in the design of a processor than just the speed of the clock that effect overall processor performance. Your comment seems to have two sides to it. In this case, the clock speed difference is so overwhelming that it does make a significant difference, but this isn't always the case as gaps of clock speeds start to shrink. Amdahl's Law is a great reference to how to look at some of these things comparatively from a high level.

    • @ZygalStudios
      @ZygalStudios  Рік тому

      ​@@BenHeckHacks That whole "variable speed bus" approach on the Ricoh 5A22 is wild to me. That may be a future video topic on how that works!

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      The Genesis CPU was rated at 1.2 MIPS. The 6502 in the NES ran at 0.5 MIPS, slightly slower even than the anemic Z80 in the Master System. The SNES used a 16-bit version of the 6502 which officially boasted 1.5 MIPS or a theoretical 1.8 MIPS, though never matched the 68000 because of a lack of registers and memory access bottleneck. They were relatively close in performance.

  • @davistalhone9482
    @davistalhone9482 2 роки тому +1

    Subbed - keep up the interesting content.

  • @MaxAbramson3
    @MaxAbramson3 2 роки тому +6

    The best I could find based on internal statements from the time:
    Blast Processing meant using the DMA to burst transfer data from game ROM to the DAC (Digital Analogue Converter), saving the CPU some clock cycles to do other things.
    Is that really a big advantage? At the end of life, it was. The Genesis was still able to free up about 1 MIPS from the 68000 CPU to handle some audio and video effects in software allowing it to play DOOM and Wolfenstein like stages and add a bit of flare to Aladdin, Toy Story, and some arcade ports right before SEGA of Japan murdered the system (with its dominating 55% market share in North America). Megadrives were better than their contemporaries because you could eventually get all five chips running and doing useful work at the same time, and because the VDP left in all sorts of sprite and color hacks that made these late games possible.

    • @ZygalStudios
      @ZygalStudios  2 роки тому +4

      Huh.. so blast processing was marketing speak for a DMA loading technique 🤣
      That's interesting!
      Definitely has its advantages in this case.

    • @AlexvrbX
      @AlexvrbX 2 роки тому +5

      @@ZygalStudios The term "Blast Processing" came about after an engineer tried to explain DMA techniques to marketing. So while it is a marketing term, it is referring to something which the Genesis excelled at... very fast DMA transfers, to various RAM. Not just from ROM to DAC.

    • @ZygalStudios
      @ZygalStudios  2 роки тому +2

      @@AlexvrbX this is probably the best explanation I've seen so far. Thank you!!

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      There was a lot of parallax scrolling and some impressive art and animation as early as 1992 under the Kalinski team. Hell, Sonic 1&2 hacked the hardware a lot.

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      ​@@ZygalStudios And if SEGA had released a 12MHz 68EC030 + 😮SVP "Genesis32" like I've suggested, then it would've cost less than the 32X, been easy to bring games over (using the 3D or sound), and kept the Genesis alive for another year or two. As important, with the onchip caches, that would take some demand off the system bus and allow much faster DMA transfers for 3D graphics.

  • @NoodleFlame
    @NoodleFlame 12 днів тому

    Blast processing was basically a catchier name for DMA, more marketable. During transfer the 68k CPU is frozen making it only viable during VBlank, while the Z80 is unnafected unless it needs to access the bus. This was a faster method of moving data from ROM or RAM to VRAM/CRAM/VSRAM and didnt require special code to send it via the data port. This made it quicker than the equivalent 68k instructions that achieved the same result.

    • @NoodleFlame
      @NoodleFlame 12 днів тому

      Anyone that asks is it really that impressive a feature? From experience, yes. You can dma new tiles graphics, scrolling, animation, fading.. and its fast and easy.

    • @NoodleFlame
      @NoodleFlame 12 днів тому

      And I have just noticed this video is 3 years old and I have added precisely nothing that wasn't already in the comments... its one of those days!

  • @iwanttocomplain
    @iwanttocomplain 2 роки тому +1

    9:10 should read YM2612 and outputs 53Khz. It has a 9bit onboard dac.
    It has six channels each with 4 sine wave ‘operators’ with 8 possible ‘algorithms’. A pcm mode for channel six and an independent lfo signal, assignable to any attribute/s across the channels.
    The design is a paired down DX7 FM design but the DX7 has 12bit output, 6 operators and 32 algorithms.
    The TI sound chip is 3, square wave, 3 octave tones (I think) and a noise channel which can combine with another channel to generate noisy tones. All four together can output a sample.
    The YM2612 generates very clean audio with a wide bandwidth (bass to treble) but the 9bit fav caused digital noise which is fairly noticeable if you know what to listen for.
    Around 200 games used the GEMS driver. Most sound bad. The reason is that the default patches (instruments) were somewhat hastily designed and the author of the driver assumed that composers would apply tweaks to the instruments to polish them up a bit but this happened quite rarely.
    Composer Spencer Nilsson did a bang up job with Ecco the Dolphin and Nathan Grigg for Demolition Man but the majority fell flat.
    The problem was in the nature of the MIDI standard. 128 patches was standard. So any midi device recognises what any instrument should be in the 128 instrument bank and the instrument will do its best to replicate, say, a marimba for patch 12. So any composition should theoretically sound correct played from any midi compatible device.
    But this is extremely limiting when you consider the possibilities of fm synthesis with an additional lfo. You are drawn into a corner of writing in individual notes and ignore that an fm system can generate an envelope of sound, altering a range of characteristics across the duration of the note or even not have a specific begging or end.
    I’m going off on one but GEMS, many of you may know is infamous for giving the chip a bad name. It was the equivalent of playing back a midi tube one windows 3.1. There is a somewhat jangly staccato sound to notes starting and stopping so abruptly and with such basic shapes.
    I think it’s more accurate to say that US developers struggled with the Z80 and FM technique who never programmed a Spectrum or Amstrad CPC.
    You will find that games using GEMS would come from that region, whearas the UK has the Krisalis sound driver available or otherwise created exceptional music such as Tim Follin and Matt Furniss.
    To hear the chip being put through its paces, the Technosoft developed Thunderforce 4 soundtrack is recommended.
    But the lost is endless. Skeleton Krew and Bram Stoker’s Fracula are also examples of how a midi implementation falls quite short of the full utilisation of this chip by more technically minded chip tune musicians.
    Disclaimer: this information is probably about 90% correct.

  • @turbinegraphics16
    @turbinegraphics16 Рік тому +2

    It makes me wonder if it was really so much of a stretch to just have 256B of cram, could have easily doubled the colours. But video games were still seen as a niche industry at the time so maybe it wasn't worth the risk.

  • @yateoi
    @yateoi Рік тому +1

    Thanks for this!!

  • @notsuoh16Bit
    @notsuoh16Bit 2 роки тому +3

    I would love to see a video that describes the creation of the Mega Drive, drawing board to shop shelf. In particular, what was envisioned and what actually came to be.
    Great video, thank you.

    • @atomicskull6405
      @atomicskull6405 Рік тому +1

      Well for one thing the VDP was intended to use a second 64k block of VRAM The pins still exist on the package, but were not connected to anything. There is an undocumented interleave mode in the VDP that would have allowed for video writes to be twice as fast by writing to both at the same time. In this mode sprites and tiles are spread across both banks of VRAM. The VDP also has pins for external color RAM that are also not connected to anything that would have allowed for more color pallets. The C2 arcade board which uses the Megadrive VDP as well as a 12Mhz 68000 and no Z-80 actually uses those features of the VDP and had something like 16 color pallets instead of 4.

    • @notsuoh16Bit
      @notsuoh16Bit Рік тому +1

      @@atomicskull6405 Yes and apparently Team Titan found some unused commands which allowed for some form of hardware scailing with Mega Drive’s ($C0001C) debug register. Also, the mega drive can have 2 MB installed on the board and the system will recognise it and can use it if software was made to take advantage of it, apparently the mega drive always sees the 64KB as 2MB any way, or something like that. I did know that original design specs were to have 128KB of system ram, that would of been amazing if it was to come to the shelves like that. Back to the 2MB, there is one ROM that would see it if you were to install the memory, MEGA OS, that tech demo OS, that can actually see the system RAM, so it would be nice to try that.

    • @MaxAbramson3
      @MaxAbramson3 Рік тому +1

      @@notsuoh16Bit 128KB of video RAM, but Sega of Japan pared that back to 64KB of VRAM at the last minute to save money. So SEGA could've released an upgraded Genesis with a 12MHz 68EC000 CPU (or 68EC030 with caches to take some of the pressure off the system bus), 12MHz Z80 sound chip (3.5x faster), up t 2MB of RAM, 128KB of VRAM, and another color mode on the VDP similar to the Saturn, making it easier to develop 2D games for both systems. Worse, this could've been released for Christmas of 1993, would've been more powerful (in some ways) than the Jaguar, made the 32X unnecessary, and existing games would've played much better on the 12MHz Genesis. They might've even been able to add Virtua Racing's 23MHz SVP to avoid the Lock On cart patent issue that kept the $49.99 unit from coming out.
      For existing Genesis owners, a swap-the-box would've cost around $100-120, much less than the 32X.
      Update: This would've made life EASIER for game developers, since their 1994-95 games that wouldn't quite run on a 7MHz Genesis would now run fluidly without a rewrite. Existing Genesis owners would only be out $100, and new buyers could get a complete system for about $130--perhaps with Daytona USA as the pack in.

    • @notsuoh16Bit
      @notsuoh16Bit Рік тому +1

      @@MaxAbramson3 This is very interesting and I agree.

    • @NoSpamForYou
      @NoSpamForYou 6 місяців тому

      They came up with good specs, then went "full retard"

  • @ianfisch7289
    @ianfisch7289 2 роки тому +1

    Your videos are amazing

  • @joesshows6793
    @joesshows6793 2 роки тому +6

    Blast processing was a marketing term based solely on the literal processor speed to explain why Sonic was so fast. Lived through this.

    • @jc_dogen
      @jc_dogen Рік тому

      It was based on a description of the direct color trick the SoA tech director figured out, but the marketing people undoubtedly didn't understand that anyway.

    • @prpredatorz310
      @prpredatorz310 Рік тому

      @dogen While that is the story we get nowadays. Like Joe stated, at the time it was advertised as a way of saying that the genesis had faster more Xtreme games than the SNES. No game showed or even made at that time used the burst feature that was later described. I think once they got called out on it they just searched for some explanation.

    • @MaxAbramson3
      @MaxAbramson3 9 місяців тому +1

      It was a marketing term to describe the DMA transfer from the ROM cartridge directly to the Digital to Analog Converter (DAC). The CPU did not need to be externally interrupted in order to perform these data transfers around the system.

  • @unity6926
    @unity6926 3 роки тому +1

    Goddamn. You have the most underrated retro youtube channel around as far as I'm concerned! Can I ask what your background is? Just wondering how you can get so in-depth with your retro development videos.

    • @ZygalStudios
      @ZygalStudios  3 роки тому +2

      Thank you!! That means a ton!
      I'm an embedded systems engineer, B.S. in Electrical Engineering and working on an M.S. in Computer Engineering focusing in Microarchitecture and Scheduler design

    • @SianaGearz
      @SianaGearz 2 роки тому +1

      Nah, he barely understands most of the words he says, this is how he does it, so he can pump out a lot of words with only a moderate effort. Like i find his suggestion that DMA peripheral in Megadrive would run in parallel to the main processor, letting it do something in the background absolutely hilarious - this is indeed how DMA works on more modern systems, but this is fundamentally at odds with cacheless processors of the time.
      And very little effort spent on unambiguous wording too. I mean, the problem with saying "8-bit PCM audio" had been pointed out before me... there's the PSG soundchip, that's got 4 channels, each 1-bit waveform and 4-bit volume, so that's 6-bit output or equivalent; then the Yamaha soundchip, i don't know its intermediate accumulator precision, it might be around 13 or 16 bit, with 9-bit output for each channel, in a time-interleave; and the 7-bit PCM samples as spoonfed by Z80, which go through and steal one of Yamaha channels. And it's evident enough that at least some of this complexity was more or less obvious to him, just not worded well enough.

    • @A31Chris
      @A31Chris 2 роки тому +4

      @@SianaGearz I'm not sure if you're kidding or just being rude

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      @@ZygalStudios Damn. I've done embedded software development professionally and still do it for fun. And I can't get so much as a call back from all of these companies-- while they claim that they can't find people. I can find qualified, experienced engineers who are looking for work everywhere I go. Most of my friends have some kind of technical background.

  • @elgeniomaestro
    @elgeniomaestro 6 місяців тому +1

    Wasn't the Blast Processing thing a marketing term about the faster CPU? They were all about how the Genesis was 16 bit and was just like the arcade

    • @MaxAbramson3
      @MaxAbramson3 2 місяці тому

      DMAing data straight from the ROM cart to the DAC without having to.use the CPU.

  • @ukyo6195
    @ukyo6195 2 роки тому +1

    Mega Drive in Europe, too. Blast processing: more MHz on processor, faster scrolling.

  • @orlandoturbo6431
    @orlandoturbo6431 3 роки тому +1

    What would happen if you replace the Turbografx 16 cpu and put the Motorola 68000 cpu same as the one in the Sega genesis.

  • @epicon6
    @epicon6 Рік тому +3

    0:06 it's not also known as the Sega Mega Drive. It's also known as the Sega Genesis.
    All of the world except North America had the Mega Drive and it would have been called the Mega Drive in NA as well if there wasn't licensing issues.
    Well there was Korea too where it was localized, so the full and factual way to say it is:
    The Mega Drive, also known as the Genesis in North America and Super Game Boy/Super Aladdin Boy in Korea.
    It was created as the Mega Drive and only renamed because of a livencing issue so it doesn't change what the console is called universally.
    If there were big companies in NA named Dreamcast and PlayStation, the consoles would still be called Dreamcast and PlayStation even if they were localized Sega Leviticus and Sony Exodus in North America.

  • @el-danihasbiarta1200
    @el-danihasbiarta1200 3 роки тому +1

    nice video dude..i have some question about a new arm chip, apple m1. i know a lot of youtubers has been made this video but i have a lot question how does apple became so efficient but also fast. how difficult to program on there?? because there's not a lot of documentation. and how about the amx and also why theres a lot of rumors spreading about the new one m1x/m2 while the developer not fully develop the apple m1??
    and whats your opinion about apple m1??

    • @SianaGearz
      @SianaGearz 2 роки тому

      For all things Apple M1, you'll have to ask Hector Martin. As to how it's fast and efficient? P.A. Semi is an engineering group that Apple purchased and their work has always been impressive, and it's a result of 20 years of cumulative work. It seems to inherit the the highly complex, out-of-order, heavily superscalar architecture similar to typical desktop chips, as opposed to being grown from simpler in-order designs gradually gaining out-of-order features, but it also has low-power simpler cores to be used when the full performance isn't needed, similar to basically all modern mobile chips. These are big chips. They're also being manufactured on a secret node that might be 5nm TSMC, which is just not really available to other companies, might have yield issues and is probably not economical. How difficult to program? Well from the application perspective, it's the same as basically any other ARMv8 chip, plus the usual Apple ecosystem; but as to system level intricacies, Hector would know.

    • @el-danihasbiarta1200
      @el-danihasbiarta1200 2 роки тому

      @@SianaGearz thank you

    • @MaxAbramson3
      @MaxAbramson3 2 місяці тому

      I started writing a book on the ARM64 for those needing to drop into Assembly. ARM supported the idea initially, then nixed support without explanation.

  • @dtester
    @dtester 2 роки тому +1

    Blast Processing is essentially marketing taking something that sounded cool when talking to an engineer that was trying to explain an actual technical thing that wasn't actually usable at the time. ^_^

    • @maroon9273
      @maroon9273 2 роки тому

      Which realized in 1994 to 1995 when the snes dominate NA market shares due to donkey kong country and Nintendo marketing. Had they took the engineer advice seriously. The genesis would've never had its 94 to 95 market slump and stay competitive with snes and upcoming early 32-bit systems (jaguar and 3do).

    • @dtester
      @dtester 2 роки тому

      @@maroon9273 I don't think that had anything to do with with people's thoughts on Blast Processing. That was kind of an odd connection you made there ^_^

    • @maroon9273
      @maroon9273 2 роки тому +1

      @@dtester No, I'm talking western and 3rd party developers having the ability and resources of accessing its dma years earlier. Especially during the early 32-bit era. Also, when snes created quality games in 1994 and after to point it overthrew sega market shares in NA.

    • @dtester
      @dtester 2 роки тому +1

      @@maroon9273 still seem weird but ok ^_^

  • @kinorai
    @kinorai 2 роки тому +1

    Silly question, I know nothing about computers and stuff .. but could we take a Genesis - it's components - and add a hard drive and basically turn it into a computer (I know it's already a computer) but I mean would it be powerful enough to run windows 1.0 or DOS ? Weird question I know and I can't formulate it properly 😅

    • @LordmonkeyTRM
      @LordmonkeyTRM Рік тому +2

      I mean in theory yes but you would need to write custom drivers for every new component you added. Then you would need a custom OS which would need to be coded. The Atari ST and Amiga were both based around the 68k and the Sharp 68k was too iirc

    • @artemusprine
      @artemusprine Рік тому +1

      It is very similar to the Amiga 500 in terms of processing power but lacks the RAM needed to run disk based software.

    • @MaxAbramson3
      @MaxAbramson3 2 місяці тому

      SEGA almost did that and had a keyboard, mouse, and floppy drive ready for this, almost like an Amiga.

  • @maroon9273
    @maroon9273 2 роки тому +1

    I wish the genesis had better expansion support by connecting the pins to its hardware to the expansion and cartridge for future enhancement purposes which would've axed the need for the 32x add-on alongside using its dma years earlier like the japanese developers.

    • @KungKras
      @KungKras Рік тому

      ...... what?

    • @MaxAbramson3
      @MaxAbramson3 2 місяці тому

      ​@@KungKras128KB of VRAM and additional color RAM like the C2. The Genesis could've displayed 4,096 out of 98,000 colors and had twice the bandwidth.

    • @KungKras
      @KungKras 2 місяці тому +1

      @@MaxAbramson3How?
      With a new VDP in the expansion slot?

    • @MaxAbramson3
      @MaxAbramson3 2 місяці тому

      @@KungKras System 16 was just a C2 arcade board with a slower processor and less VRAM and CRAM. The attachments are there inside the original Mega Drive, but SoJ decided to cut memory in half at the last minute to save money. Had they even included a cartridge expansion there, they could've sold the VRAM expansion for $50 and also kept this machine alive on the market for at least two more years.

    • @KungKras
      @KungKras 2 місяці тому

      @@MaxAbramson3But aren't the colour limitations literally etched into the VDP's silicon?

  • @mxggo9046
    @mxggo9046 2 роки тому +1

    Df retro explains blast processing.

  • @damin9913
    @damin9913 2 роки тому +2

    The Sega Genesis is more powerful then you think

    • @turbinegraphics16
      @turbinegraphics16 Рік тому +1

      Golden Axe, Alien storm and Streets of rage 2 have 6 characters on screen at once with no slowdown, there is nothing at all like that on snes. PC engine often does beat sega in objects on screen though.

  • @omarkofun3295
    @omarkofun3295 3 роки тому +1

    amazing video plz continue , ,,,,i need your advice , in order to learn about the genesis hardware , what should i study..or read ??... ,,,,and can u plz remove the background music ,,next time ,it is quite confusing ...,,and can u make another video about the genesis hardware , explaining what each part do ,,,thanks in advance

    • @ZygalStudios
      @ZygalStudios  3 роки тому +2

      My best advice to you for this is to get in touch with the Genesis/Mega Drive homebrew community through a site or forum. They will be able to provide the best insights at how to get a working environment set up so you can start developing. Now from a knowledge standpoint, get used to the instruction sets that the 68k and Z80 offer. That way, you can think about how to use them to design game code and how best to maximize instruction throughput for the best game experience.
      I appreciate the feedback :) I'd like to keep the music in, but I will lower the volume next time. Thanks for the encouragement as well! Stay tuned for more!

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      @@ZygalStudios Unfortunately, the two main forums still are not being administrated, and some of us have accounts that have been sitting in limbo for a year or more.

  • @thaddeousmaximussussex7014
    @thaddeousmaximussussex7014 2 роки тому +2

    Please do more nes SNES turbo neo Geo !

  • @xirux01
    @xirux01 Рік тому +1

    Shouldn't the Genesis be a (16+24+32bit) system if we calculate it the Atari Jaguar way.

    • @artemusprine
      @artemusprine Рік тому +2

      Except Atari didn’t do that. The Jaguar did get a 16 bit 68000 at some point in development but both of the custom chips it was designed around were true 32 bit processors. Because the system buss was 64 bits wide they claimed it was a 64 bit system, not because it had two 32 bit chips.

    • @MaxAbramson3
      @MaxAbramson3 Рік тому

      The Jaguar also had 64-bit RAM, blitter, and object processors, and that's where most of the work is done. Of course, using that metric, the Master System had a 16-bit Video Display Processor running at 11MHz.

  • @Tolbat
    @Tolbat 2 роки тому +1

    Do this for the Atari Jaguar please

    • @ZygalStudios
      @ZygalStudios  2 роки тому +2

      Already did :) it was the first one I did!
      Check it out!

    • @Tolbat
      @Tolbat 2 роки тому

      @@ZygalStudios cool thanks. I had seen that and forgot. Question now that the jaguar has fried your brain, what would it take to make a clone console? Can take this offline if needed, curious if it could be done.

    • @ZygalStudios
      @ZygalStudios  2 роки тому

      @@Tolbat Clone as in hardware emulation?

    • @Tolbat
      @Tolbat 2 роки тому

      @@ZygalStudios yes i know on the surface it at the moment is impossible however would like to know if clone hardware could be made like a retron box for genesis. Reason being is the systems are getting old, supply is limited and games are still being made. Hell it may sell more than the original hardware. Have some financial backing if you want to discuss further. What geek heros we would be if it was done trademarked and released.

    • @ZygalStudios
      @ZygalStudios  2 роки тому +1

      @@Tolbat so I would say it's definitely not impossible, just a good amount of work lol.
      This system could probably be modeled with some SoCs.
      The trouble is getting to operate is exactly the same. Most/All timing characteristics would have to be the same as the original system.
      It's possible, just would require lots of time, talent, and persistence:)

  • @posthumanistpotato
    @posthumanistpotato 2 роки тому +2

    Pfft a little more? More than double

  • @zzco
    @zzco 3 роки тому

    "were easier to be made" ? You mean the architecture allowed them to be made easier? :p

    • @ZygalStudios
      @ZygalStudios  3 роки тому +3

      That and development support was available :)

    • @zzco
      @zzco 3 роки тому

      Love the videos, though!

  • @gbilo24
    @gbilo24 Рік тому +1

    Nice video, but you completely lost me... you have so much knowledge.

  • @whatever8282828
    @whatever8282828 3 місяці тому +1

    For "blast processing", Sega wouldn't have touted it, but the SNES Ricoh CPU would vary its clock-rate based on what it was doing, which was quite ahead of its time. But that would be something Nintendo would boast about if they wanted, and they didn't.

  • @bioman1hazard607
    @bioman1hazard607 2 роки тому +1

    You got one thing wrong, the genesis was a competitor to the NES, not the SNES. It wasnt till the snes came out that things changed

    • @robintst
      @robintst Рік тому +1

      Yep. People often fail to realize the Mega Drive originally came out in 1988 in direct competition to the Famicom and PC Engine then 1989 in North America against the NES. That was the whole crux of the "Genesis Does What Nintendon't" campaign.

  • @xenxander
    @xenxander Рік тому

    I didn't like the wide button layout of its controller. Three buttons vertically across? What is this, arcade? It's dumb for a controller you hold in your hands.
    The buttons should have been in a triangle style, let's face it.
    It also was too annoying to have to hit the start button, especially with games like MK.
    Yes other controllers came out later, but that just was hard to enjoy.
    Same issue far later with the original x-box controller, with those far down black and white buttons.

  • @mikejohnson699
    @mikejohnson699 Рік тому

    Good try but super vague

  • @Hellgenio
    @Hellgenio Рік тому

    CPU benchmark MD vs TG vs SNES
    MD lying
    ua-cam.com/video/2k_jP73Ly7A/v-deo.html

  • @dischodave
    @dischodave Рік тому +1

    In Japan? Hahaha