• 0 Posts
  • 12 Comments
Joined 2 years ago
cake
Cake day: June 27th, 2023

help-circle


  • Subverb@lemmy.worldtomemes@lemmy.worldI HATE email
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    3 days ago

    *joins discord*

    You say “Hey guys, I’m new to bonmo and was wondering why it doesn’t use traditional control-c and control-v for cut and paste? I think BRONTO! used the standard keys?”

    *38 minutes later*

    BONMASTER_420 says “first its called BONMO~ not bonmo and the answer is in the sauce we really dont have time to answer the questions of ever fukwit that joins the discord plus its not are job to explain why bronto did shit different tard fork it if you don’t like it shitbeqd”

    *1hr 12 minutes later*

    BleachAnime2009 says “Again with the ctrl-c/ctrl-v thing? Jesus christ learn how to use the search function would you guys? This has been discussed to death.”

    You say “Sorry, I tried searching but don’t see an answer. I’m not a programmer either so if you could just tell me I’d appreciate it.”

    *You have been kicked*







  • The 8-bit Intel 8051 family provides a dedicated bit-addressable memory space (addresses 20h-2Fh in internal RAM), giving 128 directly addressable bits. Used them for years. I’d imagine many microcontrollers have bit-width variables.

    bit myFlag = 0;

    Or even return from a function:

    bit isValidInput(unsigned char input) { // Returns true (1) if input is valid, false (0) otherwise return (input >= '0' && input <= '9'); }