rpi4-osdev/part11-breakout-smp
2024-04-22 10:50:24 +01:00
..
bin Uploading multi-core version of Breakout as part11 2021-02-24 20:02:43 +00:00
boot Uploading multi-core version of Breakout as part11 2021-02-24 20:02:43 +00:00
include Updated to add -mstrict-align and use Apple Silicon gcc 2024-04-22 10:50:24 +01:00
lib Fixed pull up/pull down being the wrong way around 2024-04-22 09:54:15 +01:00
breakout.c Fixed annoying redraw bug (with a wait - sigh...) 2021-03-04 21:47:00 +00:00
breakout.h Fixed restart bug in multi-core Breakout and librified audio (CPU and DMA) 2021-03-04 21:38:51 +00:00
breakout_comms.c Uploading multi-core version of Breakout as part11 2021-02-24 20:02:43 +00:00
breakout_gfx.c Uploading multi-core version of Breakout as part11 2021-02-24 20:02:43 +00:00
breakout_snd.c Fixed restart bug in multi-core Breakout and librified audio (CPU and DMA) 2021-03-04 21:38:51 +00:00
Makefile Revert "Solve Issue #50 pull up pull down register mapping wrong way around" 2024-04-22 09:49:39 +01:00
Makefile.gcc Updated to add -mstrict-align and use Apple Silicon gcc 2024-04-22 10:50:24 +01:00
README.md Added other backlinks 2022-07-05 12:15:30 +01:00

Writing a "bare metal" operating system for Raspberry Pi 4 (Part 11)

< Go back to part10-multicore

Putting it all together

Frankly, I'm unlikely to write much documentation for this part. I'm also only providing a Clang Makefile for now. If you're using gcc, have a go at putting your own Makefile together, referencing the previous parts.

This part simply builds on the work we've done so far, and delivers a new Breakout codebase with:

  • Gameplay running in the foreground on the main CPU core 0
  • Graphics updated in the background on CPU core 1
  • Looped 8-bit music playing in the background on CPU core 2
  • Bluetooth communications managed in the background on CPU core 3

I've taken the opportunity to organise the code a little better and so you'll see some changes to the Makefile, and a new directory structure in place. Tidy codebase = tidy mind!

Important takeaway

As you read through this code, you'll maybe notice that a very different style has emerged. Multi-processing adds a dimension of complexity when coding and requires a total mindset shift.

There's a lot more signalling/semaphores, so the cores can be sure they're doing the right thing at the right time.

You're no longer "dry-running" a single, sequential thread. You're having to spot the potential for bugs/unexpected behaviour from the interplay of four concurrent threads!

Good luck as you explore the code!

Progress video

Click to watch a quick video of the game in action.

https://user-images.githubusercontent.com/68182575/173157526-2b22f9b2-0f55-42a0-87e1-b8278930fefe.mp4

PS: Sorry for the bad audio quality - the game itself sounds great in real life, I promise!

Go to part12-wgt >