• 1 Post
  • 35 Comments
Joined 2 years ago
cake
Cake day: September 8th, 2023

help-circle
  • If you’re up for some constructive criticism: I think the meme would be more effective if you put the silksong price in the lower panel to balance the $70 figure found in the top panel. Said another way, the lower text is missing the suffix “…for $20”.

    …and I guess while I’m at it, whatever that meme law is about fewer words is better makes me think the top panel could be trimmed down: The gaming industry explains why they need to charge $70 for a game in order to make a profit.



  • xia@lemmy.sdf.orgtomemes@lemmy.worldFound in the wild
    link
    fedilink
    English
    arrow-up
    3
    ·
    22 days ago

    In theory, yes. There is a first-stage bootloader (that actually finds, loads, verifies, and jumps-into fastboot) baked into the hardware (implemented in fuses and ROMs [like REAL roms, not “flashable” ROMs]), and AFAIK it cannot effectively be modified after the phone is manufactured, so they try to keep it as simple as possible.

    So if it were real, the psuedocode would be something like this:

    var fastbootPartition=locateFastbootPartition();
    
    if (fastbootPartition == null || !verifySignature(fastbootPartition))
    {
         // AFAIK, this code block is already a thing in production, but the
        // message is more like a "signature failed" or "corrupted" than
        // a "you done goofed".
        displayRudeMessage();
        halt();
    }
    
    var fastbootAddress=load(fastBootPartition);
    jumpTo(fastbootAddress);