Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9236781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T07:22:49+00:00 2026-06-18T07:22:49+00:00

I just discovered that the ARM I’m writing code on (Cortex M0), doesn’t support

  • 0

I just discovered that the ARM I’m writing code on (Cortex M0), doesn’t support unaligned memory access.

Now in my code I use a lot of packed structures, and I never got any warnings or hardfaults, so how can the Cortex access members of these structures when it doesnt allow for unaligned access?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T07:22:50+00:00Added an answer on June 18, 2026 at 7:22 am

    Compilers such as gcc understand about alignment and will issue the correct instructions to get around alignment issues. If you have a packed structure, you will have told the compiler about it so it know ahead of time how to do alignment.

    Let’s say you’re on a 32 bit architecture but have a struct that is packed like this:

    struct foo __attribute__((packed)) {
       unsigned char bar;
       int baz;
    }
    

    When an access to baz is made, it will do the memory loads on a 32 bit boundary, and shift all the bits into position.

    In this case it will probably to a 32 bit load of the address of bar and a 32 bit load at the address of bar + 4. Then it will apply a sequence of logical operations such as shift and logical or/and to end up with the correct value of baz in a 32 bit register.

    Have a look at the assembly output to see how this works. You’ll notice that unaligned accesses will be less efficient than aligned accesses on these architectures.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've just discovered that in my course, the lecturer doesn't want us to use
i just discovered http://code.google.com/p/re2 , a promising library that uses a long-neglected way (
I have just discovered that SQL Server CE doesn't allow you to batch queries.
I just discovered that the Delphi TRibbonComboBox doesn't have an item index, and it
I just discovered that the iframe version of the Facebook Like button doesn't honor
I just discovered that the following code executes without error (Chrome): console.log(fa); function fa(){}
I have just discovered that my app doesn't run in 4.3 even though the
I just discovered that some parts of the code I am working on incorrectly
I've really only just discovered that you can use /** @blah */ comments to
I just discovered that this code goes to crash my app only on android

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.