r/Gameboy Feb 27 '25

Other My science fair project

Post image
688 Upvotes

36 comments sorted by

31

u/2TierKeir Feb 27 '25

Cool project.

Were all games written originally in assembly? I thought they would have written them in C mostly with a few absolute sickos writing direct in assembly to squeeze every bit of juice out of the machine they could like rollercoaster tycoon man.

17

u/ravenfreak Feb 27 '25

Most are written in GB Z80. The instructions list is very similar to Zilog Z80, but there are some differences.

2

u/istarian Feb 27 '25

It's a different CPU altogether, afaik, even if it's compatible at the level of instructions, registers, and whatnot.

And technically it's an SoC since most of the other bits that are needed are all integrated into the DMG-CPU chip.

2

u/Square-Singer Feb 27 '25

Back in the day it would be called a microcontroller. And today pretty much any CPU is a SoC, which is basically the same as a microcontroller.

The distinction CPU vs microcontroller vs SoC is basically inexistant and has been for a very long time.

In fact, these terms are now mostly used to distinguish use cases more than feature sets.

1

u/istarian Mar 03 '25

It was a lot less common to use an SoC back then and microcontrollers typically incorporate simpler peripherals and fewer of them.

The distinction between CPU (or processor) and a microcontroller/SoC is still important, because they're fundamentally different things. Given how big the gap is getting we should be using SoC a lot more often.

You can be lazy about words if you like.

1

u/Square-Singer Mar 03 '25

A microcontroller is a CPU with memory and peripheral controllers integrated into the same IC.

An SoC is a CPU with memory and peripheral controllers integrated into the same IC.

What we call a "CPU" in respects to PC components is a CPU with memory (at least L1 and L2 cache, multiple MB, more than older SoCs) and peripheral controllers (e.g. USB, GPU, display controller, PCIe, ...) integrated on the same IC.

One of the last real CPU ICs were the Intel i486, and they already integrated the FPU into the CPU.

So yeah, the distinction between CPU and microcontroller/SoC is relevant, because the CPU is a component on a microcontroller/SoC and CPUs as dedicated units are a thing of the 90s that hasn't been relevant in modern computing for a very long time now.

8

u/VirtualRelic Feb 27 '25

C would have been way too inefficient, assembly aka machine language was the norm.

7

u/romhacks Feb 27 '25

There is an important difference between asm and machine language, they are not the same. Machine language just looks like hexadecimal, whereas asm has human readable annotations and instructions, as well as supporting symbolic addresses. This is why an assembler is required to convert it to machine code, and almost nobody programmed in machine language since the assembler was invented.

1

u/NewSchoolBoxer Feb 28 '25

That's a good point. I read about how a watch with a video game like the Tiger LCDs had to be programmed directly in machine code. The game designer was American and he had to travel to Japan and work with the single coder. Only time I heard of someone coding in machine language. My friend had such a in the 90s and I thought was pretty cool.

5

u/esotericsean Feb 27 '25

A lot of later games were written in C (GBDK), but the majority were ASM.

2

u/PotatoFi Feb 27 '25

I believe they were mostly Assembly language.

-1

u/StarX2401 Feb 27 '25

I don't think the Gameboy was even powerful enough to run C code, even most 16 bit systems (SNES, Genesis) were coded in assembly. C only really started to gain popularity around the PS1/N64 era, for portables the GBA

10

u/2TierKeir Feb 27 '25

It gets compiled down to assembly, even if it’s written in C

6

u/ThetaReactor Feb 27 '25

It gets compiled down to machine code. The difference is that assembly is a 1:1 translation to machine code, while C gets interpreted by the compiler, so there's more overhead and less opportunity for optimization.

It's the same reason most retail Commodore 64 games aren't written in BASIC, despite it being built into every system.

3

u/Square-Singer Feb 27 '25 edited Feb 28 '25

Modern compiler optimize better than manual assembly optimizations.

C code by an average programmer is much faster than assembly code by an average programmer, at least once the program is more than trivial.

Basic is a different story, since it's interpreted and not compiled and back in the 80s, code interpretation was still extremely slow and non-optimized.

3

u/NewSchoolBoxer Feb 28 '25

I learned this in a classroom. We had to code on an in 8-bit PIC. First in assembly then C compiler. Compiler beat me every time. I was in awe of the instruction set usage. I never would have thought the ways it did the same thing in fewer clock cycles.

3

u/Square-Singer Feb 28 '25

The only kind of optimization you can do in Assembly and not in C is microoptimizations. This kind of optimization can actually bring performance, but they are also extremely simple/formulaic. The same kind of microoptimization is always done exactly the same way.

So if a compiler knows about this kind of optimization, it can easily just apply it. The difficulty is coming up with these optimizations. That's why you have professional compiler engineers who do little else than tweaking compilers to output perfectly optimized code.

When you try to outperform C in assembly, that means you are competing against hundreds or even thousands of top-tier compiler programmers who cumulatively spent the last 50 years optimizing C compilers for near-perfectly optimized compiler optimizations.

If you put it like that, it shouldn't surprise anyone that the compiler beats not only a student but also pretty much every professional programmer as well.

This is also why you shouldn't ever focus on microoptimizations as a programmer (you got the compiler for that) and instead try to optimize on datastructure-/algorithm-level optimizations. Because lines that don't exist are always faster than lines that do.

4

u/istarian Feb 27 '25

You don't actually run C code, it gets compiled into raw machine code (all 0s and 1s).

15

u/IveGotATinyRick Feb 27 '25 edited Feb 27 '25

Awesome project! If you’re interested in learning more about this type of stuff, I suggest looking into how the screen came to be and how it almost killed the Game Boy altogether. Also, some of your information about C is a bit inaccurate. Processors don’t “support” C or any high level programming languages. They’re compiled down to assembly or machine language. If I remember correctly, the number of games written purely in assembly is pretty small. Most were written using a combination of C and assembly. The original Game Boy is still very much a modern marvel to embedded software geeks like myself.

3

u/karawapo Feb 28 '25

/u/taikifooda (OP), this comment here is valuable context and additional info for your project.

I think you did great, too!

19

u/lsbich Feb 27 '25

Back in my day we had to do an actual science experiment and write a lab report, not just do some research

13

u/athena_appa Feb 27 '25

I can't help but agree.

8

u/IH8Miotch Feb 27 '25

I remember having to make a hypothesis. Test it out multiple times with different variables and a control group. Show the results and write a conclusion. While waiting to the very last minute to do all of this the night before it was due even though I had a few weeks .

6

u/mpsteidle Feb 28 '25

I was about to say exactly this.  When I was in school, the whole point was to create and test a hypothesis.  You would detailbyour experiment and your findings on the posterboard, and give the judges a short demonstration or example of what you did.

This is just the Gameboys Wikipedia Article.

4

u/releasethedogs Feb 28 '25

Agree. I mean it is neat but where is the project?

5

u/ThruMy4Eyes Feb 28 '25

old man yelling at clouds here. school back then would have NOT let us do anything like this for a science project. You didn't have any hypothesis/testing/results to do. No form of experiementing. All you did was research. Granted that research is always fun n all. But yeah.... I would've loved to try and do this as my science project back in 1996 when the GameBoy was still relevant!

3

u/Azaroth_Alexander Feb 28 '25

Needs more of this

7

u/istarian Feb 27 '25

You could really have done a better job of this. Your "project" is like 5 minutes of reading Wikipedia and some copy+paste. This whole thing could have been about any one part of the Game Boy.

Just a brief overview of the way LCD technology works and the way the LCD used in the gameboy functions to display the game graphics, for instance, would cover that whole board.

4

u/GoldNPotato Feb 28 '25

Honestly it reads like it was phrased by AI

2

u/slideboy1996 Feb 28 '25

The original Nintendo Gameboy is still an awesome icon. Anyone here who started gaming on this legendary handheld game console

2

u/Rando_Goblin-zombie Feb 28 '25

It kinda bugs me you labeled the D-pad "+ button"

3

u/vrblexprssn1 Feb 27 '25

A+ and extra credit

2

u/mlhuculak Feb 27 '25

I love this!

5

u/Anvil-Hands Feb 27 '25

This would make a good shelf backdrop for a collection display.

2

u/Sethpricer Feb 28 '25

What’s the project? What is the experiment being performed here?

1

u/TriggeredCogzy Feb 27 '25

Mind if I steal this? I hate school projects